Configure which-key-mode

This commit is contained in:
Gerard Vermeulen 2021-12-12 04:00:09 +01:00
parent fc0a81fd1f
commit 7a54e7d90b
1 changed files with 14 additions and 0 deletions

View File

@ -556,6 +556,20 @@ previous input in the minibuffer.
(define-key minibuffer-local-map [C-tab] 'my-minibuffer-complete-history)
#+end_src
** Prefix key-binding help
Configure ~which-key-mode~ so that typing =C-h= after a prefix key displays all
keys available after the prefix key.
#+begin_src emacs-lisp
(when (fboundp 'which-key-mode)
(custom-set-variables
'(which-key-idle-delay 10000)
'(which-key-idle-secondary-delay 0.05)
'(which-key-show-early-on-C-h t))
(which-key-mode +1))
#+end_src
* Reading
** EPUB files