Restore default echo-keystrokes for which-key

This commit is contained in:
justbur 2015-08-26 20:05:13 -04:00 committed by syl20bnr
parent eeb33e4711
commit 6cf32affbd
1 changed files with 5 additions and 4 deletions

View File

@ -3628,8 +3628,6 @@ one of `l' or `r'."
(use-package which-key
:init
(progn
(setq which-key-max-description-length 32)
(which-key-mode)
(spacemacs|add-toggle which-key
:status which-key-mode
:on (which-key-mode)
@ -3674,8 +3672,6 @@ one of `l' or `r'."
(concat leader-key " " dotspacemacs-command-key) "M-x"))
;; disable special key handling for spacemacs, since it can be
;; disorienting if you don't understand it
(setq which-key-special-keys nil)
(setq which-key-use-C-h-for-paging t)
(setq which-key-prefix-title-alist
`((,(listify-key-sequence
(kbd (concat dotspacemacs-leader-key " m"))) . "Major mode commands")
@ -3686,6 +3682,11 @@ one of `l' or `r'."
(,(listify-key-sequence
(kbd dotspacemacs-emacs-leader-key)) . "Spacemacs root")))
(nconc which-key-prefix-title-alist spacemacs/prefix-titles)
(setq which-key-special-keys nil
which-key-use-C-h-for-paging t
which-key-echo-keystrokes 0.02
which-key-max-description-length 32)
(which-key-mode)
(spacemacs|diminish which-key-mode "" " K"))))
(defun spacemacs/init-window-numbering ()