summaryrefslogtreecommitdiff
path: root/helm-help.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-03-11 09:10:16 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-03-11 09:10:16 +0100
commit44c86eb079161bfaf7772806dfd168c5bfc2c49b (patch)
tree6086ab813a89c9054f4318262c7daf2807ba02b1 /helm-help.el
parent78b131134c5c7d76a8cfea20bbcae1652f5b1c7d (diff)
Show filenames in org headings (#902).
* helm-org.el (helm-org-headings--nofilename): New flag. (helm-get-org-candidates-in-file): Take one more optional arg. (helm-org-get-candidates): Use nofname arg. * helm-help.el (helm-documentation): Don't show filename.
Diffstat (limited to 'helm-help.el')
-rw-r--r--helm-help.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/helm-help.el b/helm-help.el
index 39db8e89..0f7d6472 100644
--- a/helm-help.el
+++ b/helm-help.el
@@ -75,10 +75,11 @@ Find here the documentation of all sources actually documented."
do (if (functionp str)
(insert (funcall str))
(insert str)))))
- (helm :sources (helm-source-org-headings-for-files
- (list helm-documentation-file))
- :candidate-number-limit 99999
- :buffer "*helm documentation*"))
+ (let ((helm-org-headings--nofilename t))
+ (helm :sources (helm-source-org-headings-for-files
+ (list helm-documentation-file))
+ :candidate-number-limit 99999
+ :buffer "*helm documentation*")))
;;; Global help message - Used by `helm-help'
;;