Used the timer trick to continue reading when user stays idle

http://vim.wikia.com/wiki/Timer_to_execute_commands_periodically
This commit is contained in:
IdanArye 2014-05-16 05:00:26 +03:00
parent 762034df2c
commit 1317ef50e9

View File

@ -50,6 +50,7 @@ function! s:f_debugger.invokeReading() dict
\|| 'error'==l:checkpid[0]
call self.kill()
endif
call feedkeys("f\e") " Make sure the CursorHold event is refired even if the user does nothing
endfunction
function! s:f_debugger.handleLine(pipeName,line) dict