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-c C-b  elisp-byte-compile-buffer
C-c C-e  elisp-eval-region-or-buffer
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-keymap lisp-interaction-mode-map
  :doc "Keymap for Lisp Interaction mode.
All commands in `lisp-mode-shared-map' are inherited by this map."
  :parent lisp-mode-shared-map
  "C-M-x" #'eval-defun
  "C-M-q" #'indent-pp-sexp
  "C-c C-e" #'elisp-eval-region-or-buffer
  "C-c C-b" #'elisp-byte-compile-buffer
  "M-TAB" #'completion-at-point
  "C-j"   #'eval-print-last-sexp)