Variable: lisp-interaction-mode-map
lisp-interaction-mode-map is a variable defined in elisp-mode.el.gz.
Value
C-M-i completion-at-point
C-M-q indent-pp-sexp
C-M-q indent-sexp
C-M-q prog-indent-sexp
C-M-x eval-defun
C-j eval-print-last-sexp
DEL backward-delete-char-untabify
Documentation
Keymap for Lisp Interaction mode.
All commands in lisp-mode-shared-map are inherited by this map.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
;;; Elisp Interaction mode
(defvar lisp-interaction-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map lisp-mode-shared-map)
(define-key map "\e\C-x" 'eval-defun)
(define-key map "\e\C-q" 'indent-pp-sexp)
(define-key map "\e\t" 'completion-at-point)
(define-key map "\n" 'eval-print-last-sexp)
map)
"Keymap for Lisp Interaction mode.
All commands in `lisp-mode-shared-map' are inherited by this map.")