branch: master
commit ca991b0d3a1c0ff0ffae487d4bd1e7d7671708a7
Author: Justin Burkett <[email protected]>
Commit: Justin Burkett <[email protected]>
Autoload the show keymap functions
---
which-key.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/which-key.el b/which-key.el
index ab25ac9..fa865bf 100644
--- a/which-key.el
+++ b/which-key.el
@@ -2300,18 +2300,21 @@ Only if no keys fit fallback to LOC2."
(symbol-value keymap-sym)
nil all)))
+;;;###autoload
(defun which-key-show-keymap ()
"Show the top-level bindings in KEYMAP using which-key. KEYMAP
is selected interactively from all available keymaps."
(interactive)
(which-key-show-keymap-1))
+;;;###autoload
(defun which-key-show-full-keymap ()
"Show all bindings in KEYMAP using which-key. KEYMAP is
selected interactively from all available keymaps."
(interactive)
(which-key-show-keymap-1 t))
+;;;###autoload
(defun which-key-show-minor-mode-keymap ()
"Show the top-level bindings in KEYMAP using which-key. KEYMAP
is selected interactively by mode in `minor-mode-map-alist'."