From d9b3c407f60f898dd95cb5e4b1c177a37ef85457 Mon Sep 17 00:00:00 2001 From: Tu Do Date: Tue, 31 Mar 2015 11:10:19 +0700 Subject: [PATCH] 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. --- spacemacs/packages.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spacemacs/packages.el b/spacemacs/packages.el index 93568177fc04..982fd3130d0c 100644 --- a/spacemacs/packages.el +++ b/spacemacs/packages.el @@ -1548,6 +1548,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 ()