Function: list-keyboard-macros
list-keyboard-macros is an autoloaded, interactive and byte-compiled
function defined in kmacro.el.gz.
Signature
(list-keyboard-macros)
Documentation
List the keyboard macros.
Probably introduced at or before Emacs version 30.1.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/kmacro.el.gz
;;;###autoload
(defun list-keyboard-macros ()
"List the keyboard macros."
(interactive)
(let ((buf (get-buffer-create "*Keyboard Macro List*")))
(with-current-buffer buf
(kmacro-menu-mode))
(pop-to-buffer buf)))