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 443a1cb commit ba9df8cCopy full SHA for ba9df8c
helm-dash.el
@@ -54,9 +54,12 @@
54
(defcustom helm-dash-docsets-path
55
(let ((original-dash-path (expand-file-name "~/Library/Application Support/Dash/DocSets")))
56
(if (and (string-equal system-type 'darwin)
57
- (file-directory-p original-dash-path))
58
- original-dash-path
59
- (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")))
60
+ (if (file-directory-p zeal-docsets-path)
61
+ zeal-docsets-path
62
+ (expand-file-name "~/.docsets")))))
63
"Default path for docsets.
64
If you're setting this option manually, set it to an absolute
65
path. You can use `expand-file-name' function for that."
0 commit comments