Function: repeat-get-map
repeat-get-map is a byte-compiled function defined in repeat.el.gz.
Signature
(repeat-get-map)
Documentation
Return a transient map for keys repeatable after the current command.
Source Code
;; Defined in /usr/src/emacs/lisp/repeat.el.gz
(defun repeat-get-map ()
"Return a transient map for keys repeatable after the current command."
(when repeat-mode
(let ((rep-map (or repeat-map (repeat--command-property 'repeat-map))))
(when rep-map
(when (and (symbolp rep-map) (boundp rep-map))
(setq rep-map (symbol-value rep-map)))
rep-map))))