Enable helm-descbinds globally

It offers superior key binding and command exploration interface compare
with stock Help buffer:

- It can search for key bindings or associated with Helm.
- Since using Helm, it can narrow to relevant matches.

Stock help-mode buffer has nothing on this. One useful example is using
`C-h b` to explore major mode key bindings.
This commit is contained in:
Tu Do 2015-03-31 11:10:19 +07:00 committed by syl20bnr
parent 1b3a10b054
commit fd5a8b0d7b

View file

@ -1584,6 +1584,9 @@ ARG non nil means that the editing style is `vim'."
(use-package helm-descbinds
:defer t
:init
(add-hook 'helm-mode-hook (lambda ()
(helm-descbinds-mode 1)
(setq helm-descbinds-window-style 'split)))
(evil-leader/set-key "?" 'helm-descbinds)))
(defun spacemacs/init-helm-flyspell ()