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', )