run wakatime-cli in foreground when debug mode on

This commit is contained in:
Alan Hamlett 2017-04-13 22:51:24 -07:00
parent 2bff8ca6cf
commit e98a9f394f
1 changed files with 5 additions and 1 deletions

View File

@ -192,7 +192,11 @@ let s:VERSION = '4.0.14'
exec 'silent !start /min cmd /c "' . s:JoinArgs(cmd) . '"'
endif
else
let stdout = system(s:JoinArgs(cmd) . ' &')
if s:is_debug_mode_on
let stdout = system(s:JoinArgs(cmd))
else
let stdout = system(s:JoinArgs(cmd) . ' &')
endif
endif
call s:SetLastHeartbeat(a:time, a:time, file)
if s:is_debug_mode_on && stdout != ''