Variable: abbrev-map

abbrev-map is a variable defined in bindings.el.gz.

Value

'    expand-abbrev
+    add-mode-abbrev
-    inverse-add-global-abbrev
C-a  add-mode-abbrev
e    expand-abbrev
g    add-global-abbrev
i g  inverse-add-global-abbrev
i l  inverse-add-mode-abbrev
l    add-mode-abbrev
n    expand-jump-to-next-slot
p    expand-jump-to-previous-slot

Documentation

Keymap for abbrev commands.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/bindings.el.gz
(defvar-keymap abbrev-map
  :doc "Keymap for abbrev commands."
  "l"   #'add-mode-abbrev
  "C-a" #'add-mode-abbrev
  "g"   #'add-global-abbrev
  "+"   #'add-mode-abbrev
  "i g" #'inverse-add-global-abbrev
  "i l" #'inverse-add-mode-abbrev
  "-"   #'inverse-add-global-abbrev
  "e"   #'expand-abbrev
  "'"   #'expand-abbrev)