Variable: gud-sdb-repeat-map

gud-sdb-repeat-map is a variable defined in gud.el.gz.

Value

c  gud-cont
i  gud-stepi
l  gud-refresh
n  gud-next
s  gud-step

Documentation

Keymap to repeat sdb stepping instructions \C-x C-a C-n n n.

Used in repeat-mode(var)/repeat-mode(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defvar-keymap gud-sdb-repeat-map
  :doc "Keymap to repeat `sdb' stepping instructions \\`C-x C-a C-n n n'.
Used in `repeat-mode'."
  "n" #'gud-next
  "s" #'gud-step
  "i" #'gud-stepi
  "c" #'gud-cont
  "l" #'gud-refresh)