From cc43abe32327f95601138bf893717231c85feb4a Mon Sep 17 00:00:00 2001 From: IdanArye Date: Mon, 5 Jun 2017 01:27:18 +0300 Subject: [PATCH] Fix #39 - make non-relative paths not use `~` --- plugin/vebugger.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/vebugger.vim b/plugin/vebugger.vim index 451b428..23d7dd5 100644 --- a/plugin/vebugger.vim +++ b/plugin/vebugger.vim @@ -12,7 +12,7 @@ command! -nargs=0 VBGcontinue call vebugger#userAction('setWriteActionAndPerform command! -nargs=0 VBGtoggleTerminalBuffer call vebugger#userAction('toggleTerminalBuffer') command! -nargs=+ -complete=file VBGtoggleBreakpoint call vebugger#std#toggleBreakpoint() -command! -nargs=0 VBGtoggleBreakpointThisLine call vebugger#std#toggleBreakpoint(expand('%:~:.'),line('.')) +command! -nargs=0 VBGtoggleBreakpointThisLine call vebugger#std#toggleBreakpoint(expand('%:p:.'),line('.')) command! -nargs=0 VBGclearBreakpoints call vebugger#std#clearBreakpoints() command! -nargs=1 VBGeval call vebugger#userAction('std_eval', )