summaryrefslogtreecommitdiff
path: root/helm-locate.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2017-03-16 07:37:55 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2017-03-16 07:37:55 +0100
commit7d77db896db1905302ce348683ed4b267fac651a (patch)
treed9c0e92a9997de3cc2a8cebac6dc3d7747e1bb26 /helm-locate.el
parenteed7ba6a1ec93270f93779108387364c8c903652 (diff)
Fix some docstrings.
* helm-files.el (helm-multi-files): Do it. * helm-locate.el (helm-locate-recursive-dirs-command): Do it.
Diffstat (limited to 'helm-locate.el')
-rw-r--r--helm-locate.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/helm-locate.el b/helm-locate.el
index 409ce85b..81f464f5 100644
--- a/helm-locate.el
+++ b/helm-locate.el
@@ -113,11 +113,16 @@ directories of this list with `helm-projects-find-files'."
:type '(repeat string))
(defcustom helm-locate-recursive-dirs-command "locate -i -e -A --regex '^%s' '%s.*$'"
- "Command used in recursive directories completion in `helm-find-files'.
+ "Command used for recursive directories completion in `helm-find-files'.
For Windows and `es' use something like \"es -r ^%s.*%s.*$\"
-The two format specs are mandatory."
+The two format specs are mandatory.
+
+If for some reasons you can't use locate because your filesystem
+doesn't have a data base, you can use find command from findutils but
+be aware that it will be much slower, see `helm-find-files' embebded
+help for more infos."
:type 'string
:group 'helm-files)