aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--which-key.el19
1 files changed, 10 insertions, 9 deletions
diff --git a/which-key.el b/which-key.el
index a9087e2afc9..600f02f3f89 100644
--- a/which-key.el
+++ b/which-key.el
@@ -525,15 +525,16 @@ This string is fed into `substitute-command-keys'")
525 map) 525 map)
526 "Keymap for C-h commands.") 526 "Keymap for C-h commands.")
527 527
528(defvar which-key--paging-functions '(which-key-C-h-dispatch 528(defvar which-key--paging-functions
529 which-key-manual-update 529 (list #'which-key-C-h-dispatch
530 which-key-turn-page 530 #'which-key-manual-update
531 which-key-show-next-page-cycle 531 #'which-key-turn-page
532 which-key-show-next-page-no-cycle 532 #'which-key-show-next-page-cycle
533 which-key-show-previous-page-cycle 533 #'which-key-show-next-page-no-cycle
534 which-key-show-previous-page-no-cycle 534 #'which-key-show-previous-page-cycle
535 which-key-undo-key 535 #'which-key-show-previous-page-no-cycle
536 which-key-undo)) 536 #'which-key-undo-key
537 #'which-key-undo))
537 538
538(defvar which-key-persistent-popup nil 539(defvar which-key-persistent-popup nil
539 "Whether or not to disable `which-key--hide-popup'.") 540 "Whether or not to disable `which-key--hide-popup'.")