We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa6c0a6 commit 7fb3e7eCopy full SHA for 7fb3e7e
helm-dash.el
@@ -55,9 +55,12 @@
55
(defcustom helm-dash-docsets-path
56
(let ((original-dash-path (expand-file-name "~/Library/Application Support/Dash/DocSets")))
57
(if (and (string-equal system-type 'darwin)
58
- (file-directory-p original-dash-path))
59
- original-dash-path
60
- (expand-file-name "~/.docsets")))
+ (file-directory-p original-dash-path))
+ original-dash-path
+ (let ((zeal-docsets-path (expand-file-name "~/.local/share/Zeal/Zeal/docsets")))
61
+ (if (file-directory-p zeal-docsets-path)
62
+ zeal-docsets-path
63
+ (expand-file-name "~/.docsets")))))
64
"Default path for docsets.
65
If you're setting this option manually, set it to an absolute
66
path. You can use `expand-file-name' function for that."
0 commit comments