Variable: emacs-lisp-mode-map

emacs-lisp-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-c C-f      elisp-byte-compile-file
C-x C-a C-c  edebug-go-mode
C-x C-a C-l  edebug-where
C-x C-a C-n  edebug-next-mode
C-x C-a C-s  edebug-step-mode
C-x C-a RET  edebug-set-initial-mode
DEL          backward-delete-char-untabify
M-q          prog-fill-reindent-defun

Documentation

Keymap for Emacs Lisp mode.

All commands in lisp-mode-shared-map are inherited by this map.

Probably introduced at or before Emacs version 18.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
(defvar-keymap emacs-lisp-mode-map
  :doc "Keymap for Emacs Lisp mode.
All commands in `lisp-mode-shared-map' are inherited by this map."
  :parent lisp-mode-shared-map
  "M-TAB" #'completion-at-point
  "C-M-x" #'eval-defun
  "C-c C-e" #'elisp-eval-region-or-buffer
  "C-c C-f" #'elisp-byte-compile-file
  "C-c C-b" #'elisp-byte-compile-buffer
  "C-M-q" #'indent-pp-sexp)