summaryrefslogtreecommitdiff
path: root/helm-grep.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2020-06-29 07:01:51 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2020-06-29 07:02:27 +0200
commit4ca209bf5f217d883b948b1655466b34dcd8bc87 (patch)
treee7451bf2025230b2f8431b8ae577f930de4abfd6 /helm-grep.el
parentb957b682d4284347b764cac1863809865ccb93ef (diff)
Improve helm-grep help and docstrings (#2332)
Diffstat (limited to 'helm-grep.el')
-rw-r--r--helm-grep.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/helm-grep.el b/helm-grep.el
index 761ade5e..003b55c8 100644
--- a/helm-grep.el
+++ b/helm-grep.el
@@ -1429,7 +1429,7 @@ non-file buffers."
;; https://github.com/BurntSushi/ripgrep
(defcustom helm-grep-ag-command
- "ag --line-numbers -S --hidden --color --nogroup %s %s %s"
+ "ag --line-numbers -S --color --nogroup %s %s %s"
"The default command for AG, PT or RG.
Takes three format specs, the first for type(s), the second for
@@ -1472,7 +1472,10 @@ When modifying the default colors of matches with e.g.
\"--color-match\" option of AG or \"--colors\" option of ripgrep
you may want to modify as well `helm-grep-ag-pipe-cmd-switches'
to have all matches colorized with the same color in multi
-match."
+match.
+
+Of course you can use several other options, see the man page of the
+backend you are using."
:group 'helm-grep
:type 'string)