28 lines
1.1 KiB
VimL
28 lines
1.1 KiB
VimL
|
|
|
|
command! -nargs=1 VBGrawWrite call vebugger#writeLine(<q-args>)
|
|
|
|
command! -nargs=0 VBGstepIn call vebugger#setWriteActionAndPerform('std','flow','stepin')
|
|
command! -nargs=0 VBGstepOver call vebugger#setWriteActionAndPerform('std','flow','stepover')
|
|
command! -nargs=0 VBGstepOut call vebugger#setWriteActionAndPerform('std','flow','stepout')
|
|
command! -nargs=0 VBGcontinue call vebugger#setWriteActionAndPerform('std','flow','continue')
|
|
|
|
command! -nargs=0 VBGtoggleLogBuffer call vebugger#toggleLogBuffer()
|
|
command! -nargs=+ VBGtoggleBreakpoint call vebugger#std#toggleBreakpoint(<f-args>)
|
|
command! -nargs=0 VBGtoggleBreakpointThisLine call vebugger#std#toggleBreakpoint(expand('%:~:.'),line('.'))
|
|
command! -nargs=0 VBGclearBreakpints call vebugger#std#clearBreakpoints()
|
|
|
|
if exists('g:vebugger_leader')
|
|
if !empty(g:vebugger_leader)
|
|
for s:mapping in items({
|
|
\'i':'VBGstepIn',
|
|
\'o':'VBGstepOver',
|
|
\'O':'VBGstepOut',
|
|
\'c':'VBGcontinue',
|
|
\'l':'VBGtoggleLogBuffer',
|
|
\'b':'VBGtoggleBreakpointThisLine'})
|
|
exe 'nnoremap '.g:vebugger_leader.s:mapping[0].' :'.s:mapping[1].'<Cr>'
|
|
endfor
|
|
endif
|
|
endif
|