Add docstrings to variables
This commit is contained in:
parent
0e79b6f38d
commit
6e0bef84ca
1 changed files with 9 additions and 3 deletions
|
@ -42,9 +42,15 @@
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(defvar transient-navigation-mode-map (make-sparse-keymap))
|
(defvar transient-navigation-mode-map (make-sparse-keymap)
|
||||||
(defvar transient-C-navigation-map (make-sparse-keymap))
|
"The keymap that will start all the trouble.
|
||||||
(defvar transient-M-navigation-map (make-sparse-keymap))
|
|
||||||
|
The original keybindings will be remapped to the ones enabling
|
||||||
|
the transient keymap.")
|
||||||
|
(defvar transient-C-navigation-map (make-sparse-keymap)
|
||||||
|
"The keymap containing control-prefixed keys.")
|
||||||
|
(defvar transient-M-navigation-map (make-sparse-keymap)
|
||||||
|
"The keymap containing meta-prefixed keys.")
|
||||||
|
|
||||||
(defmacro transnav-make-transient (key map func)
|
(defmacro transnav-make-transient (key map func)
|
||||||
"Bind KEY in MAP to FUNC with a transient map."
|
"Bind KEY in MAP to FUNC with a transient map."
|
||||||
|
|
Loading…
Reference in a new issue