summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGareth Parker <gareth@brainnwave.com>2019-07-05 16:11:34 +0100
committerGareth Parker <gareth@brainnwave.com>2019-07-05 16:11:34 +0100
commita9e84894fa97faea1958865b3496c8d709f19199 (patch)
tree2347ab50a88f739ddffcbe12d3fab60f7cddbf34
parent772866f703b987c4bfe71a13c644f2952b9b2bee (diff)
downloadvdebug-a9e84894fa97faea1958865b3496c8d709f19199.zip
Changing the command name
-rw-r--r--plugin/vdebug.vim1
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()