Skip to content

Commit 2f52caa

Browse files
committed
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"...
1 parent 9f39160 commit 2f52caa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

autoload/vebugger.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function! s:f_debugger.invokeReading() dict
5959
\|| 'error'==l:checkpid[0]
6060
call self.kill()
6161
endif
62-
call feedkeys("f\e") " Make sure the CursorHold event is refired even if the user does nothing
62+
call feedkeys("f\e", 'n') " Make sure the CursorHold event is refired even if the user does nothing
6363
endfunction
6464

6565
"Handle a single line from the debugger's interactive shell

doc/vebugger.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Author: Idan Arye <https://github.com/idanarye/>
55
License: Same terms as Vim itself (see |license|)
66

7-
Version: 1.2.2
7+
Version: 1.2.3
88

99
INTRODUCTION *vebugger*
1010

0 commit comments

Comments
 (0)