From 1b6abf47ef4669784886d1f3e9402bcbc9a3f871 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 11 May 2018 20:23:25 +0200 Subject: [PATCH] feature/lookup: fix counsel-dash not loading; use eww for docsets --- modules/feature/lookup/config.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/feature/lookup/config.el b/modules/feature/lookup/config.el index 8b5b1d611..b693f44bc 100644 --- a/modules/feature/lookup/config.el +++ b/modules/feature/lookup/config.el @@ -203,17 +203,18 @@ Used by `+lookup/in-docsets' and `+lookup/documentation'." (def-package! helm-dash :commands (helm-dash helm-dash-install-docset helm-dash-at-point helm-dash-docset-installed-p helm-dash-installed-docsets) + :init + (setq helm-dash-enable-debugging doom-debug-mode + helm-dash-browser-func #'eww) :config (unless (file-directory-p helm-dash-docsets-path) (setq helm-dash-docsets-path (concat doom-etc-dir "docsets/"))) (unless (file-directory-p helm-dash-docsets-path) - (make-directory helm-dash-docsets-path t)) - (setq helm-dash-enable-debugging doom-debug-mode)) + (make-directory helm-dash-docsets-path t))) (def-package! counsel-dash :when (featurep! :completion ivy) :commands (counsel-dash counsel-dash-install-docset) - :after helm-dash :config (setq counsel-dash-min-length 2)))