Function: list-abbrevs

list-abbrevs is an interactive and byte-compiled function defined in abbrev.el.gz.

Signature

(list-abbrevs &optional LOCAL)

Documentation

Display a list of the defined abbrevs.

If LOCAL is non-nil (interactively, when invoked with a prefix arg), display only local, i.e. mode-specific, abbrevs. Otherwise display all the abbrevs.

View in manual

Probably introduced at or before Emacs version 21.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun list-abbrevs (&optional local)
  "Display a list of the defined abbrevs.
If LOCAL is non-nil (interactively, when invoked with a
prefix arg), display only local, i.e. mode-specific, abbrevs.
Otherwise display all the abbrevs."
  (interactive "P")
  (display-buffer (prepare-abbrev-list-buffer local)))