Fix #17 - Vebugger interfieres with Ctrlp plugin
Use `'n'` mode with `feedkeys("f\e")` to prevent CtrlP's mapping from interpreting `f` as actual "add `f` and close the window"...
This commit is contained in:
parent
9f39160685
commit
2f52caac25
@ -59,7 +59,7 @@ function! s:f_debugger.invokeReading() dict
|
|||||||
\|| 'error'==l:checkpid[0]
|
\|| 'error'==l:checkpid[0]
|
||||||
call self.kill()
|
call self.kill()
|
||||||
endif
|
endif
|
||||||
call feedkeys("f\e") " Make sure the CursorHold event is refired even if the user does nothing
|
call feedkeys("f\e", 'n') " Make sure the CursorHold event is refired even if the user does nothing
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
"Handle a single line from the debugger's interactive shell
|
"Handle a single line from the debugger's interactive shell
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
Author: Idan Arye <https://github.com/idanarye/>
|
Author: Idan Arye <https://github.com/idanarye/>
|
||||||
License: Same terms as Vim itself (see |license|)
|
License: Same terms as Vim itself (see |license|)
|
||||||
|
|
||||||
Version: 1.2.2
|
Version: 1.2.3
|
||||||
|
|
||||||
INTRODUCTION *vebugger*
|
INTRODUCTION *vebugger*
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user