summaryrefslogtreecommitdiffhomepage
path: root/misc
diff options
context:
space:
mode:
authorjaortega <jaortega>2001-02-17 13:37:55 +0000
committerjaortega <jaortega>2001-02-17 13:37:55 +0000
commit90e322c663b4e5a93c30f8d9004e6a6a07c34553 (patch)
treee3d23620ab0fb723602a91558bba9de7b911dc09 /misc
parent625714c7186f8c278c36e722f9ef37edad442c93 (diff)
downloadmdk-90e322c663b4e5a93c30f8d9004e6a6a07c34553.tar.gz
mdk-90e322c663b4e5a93c30f8d9004e6a6a07c34553.tar.bz2
mapped new gud commands
Diffstat (limited to 'misc')
-rw-r--r--misc/mixvm.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/misc/mixvm.el b/misc/mixvm.el
index cc12604..71e1fb5 100644
--- a/misc/mixvm.el
+++ b/misc/mixvm.el
@@ -136,13 +136,14 @@ and source-file directory for your debugger."
(gud-def gud-break "sbp %l" "\C-b" "Set breakpoint at current line.")
(gud-def gud-remove "cbp %l" "\C-d" "Remove breakpoint at current line")
-; (gud-def gud-step "step" "\C-s" "Step one source line with display.")
-; (gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
-; (gud-def gud-cont "continue" "\C-r" "Continue with display.")
-; (gud-def gud-finish "return" "\C-f" "Finish executing current function.")
+ (gud-def gud-step "next" "\C-s" "Step one source line with display.")
+ (gud-def gud-next "next" "\C-n" "Step one line.")
+ (gud-def gud-stepi "next" "\C-i" "Step one line.")
+ (gud-def gud-cont "run" "\C-r" "Continue with display.")
+ (gud-def gud-finish "run" "\C-f" "Finish executing current function.")
+ (gud-def gud-print "weval %e" "\C-p" "Evaluate expression at point.")
; (gud-def gud-up "up" "<" "Up one stack frame.")
; (gud-def gud-down "down" ">" "Down one stack frame.")
-; (gud-def gud-print "p %e" "\C-p" "Evaluate Python expression at point.")
; ;; Is this right?
; (gud-def gud-statement "! %e" "\C-e" "Execute Python statement at point.")