Variable: gdb-inferior-io-mode-map

gdb-inferior-io-mode-map is a variable defined in gdb-mi.el.gz.

Value

C-c C-\  gdb-io-quit
C-c C-c  gdb-io-interrupt
C-c C-d  gdb-io-eof
C-c C-z  gdb-io-stop
C-d      gdb-io-eof

Documentation

Keymap for gdb-inferior-io-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defvar gdb-inferior-io-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map "\C-c\C-c" 'gdb-io-interrupt)
    (define-key map "\C-c\C-z" 'gdb-io-stop)
    (define-key map "\C-c\C-\\" 'gdb-io-quit)
    (define-key map "\C-c\C-d" 'gdb-io-eof)
    (define-key map "\C-d" 'gdb-io-eof)
    map))