Emacs: Add function for per-mode helm-dash-docsets Use a function generator to avoid repetition
Alan Pearce alan@alanpearce.co.uk
Thu, 07 Aug 2014 19:50:25 +0100
1 files changed, 8 insertions(+), 0 deletions(-)
jump to
M tag-emacs/emacs.d/init.el → tag-emacs/emacs.d/init.el
@@ -327,6 +327,14 @@ (bind-key "i" #'dired-subtree-insert dired-mode-map))) ;;;; Documentation +(req-package helm-dash + :defer t + :config (progn + (defun ap/create-helm-dash-hook (docsets) + (lambda () + (when (require 'helm-dash nil :noerror) + (setq-local helm-dash-docsets (if (listp docsets) docsets (list docsets)))))))) + (req-package which-func :init (which-function-mode) :config (setq which-func-modes t))