Function: insert-abbrevs
insert-abbrevs is an interactive and byte-compiled function defined in
abbrev.el.gz.
Signature
(insert-abbrevs)
Documentation
Insert the description of all defined abbrevs after point.
Set mark after the inserted text.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun insert-abbrevs ()
"Insert the description of all defined abbrevs after point.
Set mark after the inserted text."
(interactive)
(push-mark
(save-excursion
(dolist (tablesym abbrev-table-name-list)
(insert-abbrev-table-description tablesym t))
(point))))