summaryrefslogtreecommitdiff
path: root/helm-help.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2020-07-11 17:00:31 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2020-07-11 17:00:31 +0200
commita75ac958869e1406bc6fb84e56e326f694c829b9 (patch)
treec8128983cf3de3ceaabc32ec5b62e1ca0bae50a3 /helm-help.el
parent18d83a4285d78936bd92ba5a90347be70fecfbef (diff)
Update documentation about wilcards
Diffstat (limited to 'helm-help.el')
-rw-r--r--helm-help.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/helm-help.el b/helm-help.el
index 7bbbde0f..7f8a9ded 100644
--- a/helm-help.el
+++ b/helm-help.el
@@ -541,6 +541,19 @@ a named extension recursively you would write \"**.el\" whereas in Bash it would
be \"**/*.el\". Directory selection with \"**/\" like Bash \"shopt globstar\"
option is not supported yet.
+Helm supports different styles of wildcards:
+
+- `sh' style, the ones supported by `file-expand-wildcards'.
+e.g. \"*.el\", \"*.[ch]\" which match respectively all \".el\"
+files or all \".c\" and \".h\" files.
+
+- `bash' style (partially) In addition to what allowed in `sh'
+style you can specify file extensions that have more than one
+character like this: \"*.{sh,py}\" which match \".sh\" and
+\".py\" files.
+
+Of course in both styles you can specify one or two \"*\".
+
*** Query replace regexp on filenames
Replace different parts of a file basename with something else.