summaryrefslogtreecommitdiff
path: root/helm-grep.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2019-08-06 14:28:42 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2019-08-06 14:28:42 +0200
commit5222d2c8085a9cfb2a399b9029bb92dddb1c6397 (patch)
treebd1bd793706c8652c6aec2af07d4a8b005fabb04 /helm-grep.el
parentdb6a9ab0b8d7b37fd85da831116158f4e213782a (diff)
Fix defcustom types in helm-grep
* helm-grep.el (helm-grep-pipe-cmd-switches): Do it. (helm-grep-ag-pipe-cmd-switches): Do it.
Diffstat (limited to 'helm-grep.el')
-rw-r--r--helm-grep.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-grep.el b/helm-grep.el
index 6e80c549..208d4cc6 100644
--- a/helm-grep.el
+++ b/helm-grep.el
@@ -221,7 +221,7 @@ Here are the commands where you may want to add switches:
You probably don't need to use this unless you know what you are doing."
:group 'helm-grep
- :type 'string)
+ :type '(repeat string))
(defcustom helm-grep-ag-pipe-cmd-switches nil
"A list of additional parameters to pass to grep-ag pipe command.
@@ -230,7 +230,7 @@ Use parameters compatibles with the backend you are using
You probably don't need to use this unless you know what you are doing."
:group 'helm-grep
- :type 'string)
+ :type '(repeat string))
(defcustom helm-grep-input-idle-delay 0.6
"Same as `helm-input-idle-delay' but for grep commands.