diff options
author | Gareth Parker <gareth@brainnwave.com> | 2019-07-05 16:11:34 +0100 |
---|---|---|
committer | Gareth Parker <gareth@brainnwave.com> | 2019-07-05 16:11:34 +0100 |
commit | a9e84894fa97faea1958865b3496c8d709f19199 (patch) | |
tree | 2347ab50a88f739ddffcbe12d3fab60f7cddbf34 /plugin | |
parent | 772866f703b987c4bfe71a13c644f2952b9b2bee (diff) | |
download | vdebug-a9e84894fa97faea1958865b3496c8d709f19199.zip |
Changing the command name
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/vdebug.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/vdebug.vim b/plugin/vdebug.vim index 084e640..0b32d09 100644 --- a/plugin/vdebug.vim +++ b/plugin/vdebug.vim @@ -121,6 +121,7 @@ python3 import vdebug.debugger_interface python3 debugger = vdebug.debugger_interface.DebuggerInterface() " Commands +command! -nargs=? VdebugChangeStack python3 debugger.change_stack(<q-args>) command! -nargs=? -complete=customlist,s:BreakpointTypes Breakpoint python3 debugger.cycle_breakpoint(<q-args>) command! -nargs=? -complete=customlist,s:BreakpointTypes SetBreakpoint python3 debugger.set_breakpoint(<q-args>) command! VdebugStart python3 debugger.run() |