Function: helpful--all-keymap-syms

helpful--all-keymap-syms is a byte-compiled function defined in helpful.el.

Signature

(helpful--all-keymap-syms)

Documentation

Return all keymaps defined in this Emacs instance.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--all-keymap-syms ()
  "Return all keymaps defined in this Emacs instance."
  (let (keymaps)
    (mapatoms
     (lambda (sym)
       (when (and (boundp sym) (keymapp (symbol-value sym)))
         (push sym keymaps))))
    keymaps))