diff options
| -rw-r--r-- | lisp/vc/vc-git.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 30ec712cfc1..f62e1083229 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -180,9 +180,10 @@ Should be consistent with the Git config value i18n.logOutputEncoding." | |||
| 180 | :type '(coding-system :tag "Coding system to decode Git log output") | 180 | :type '(coding-system :tag "Coding system to decode Git log output") |
| 181 | :version "25.1") | 181 | :version "25.1") |
| 182 | 182 | ||
| 183 | (defcustom vc-git-grep-template "git --no-pager grep -n -e <R> -- <F>" | 183 | (defcustom vc-git-grep-template "git --no-pager grep -n <C> -e <R> -- <F>" |
| 184 | "The default command to run for \\[vc-git-grep]. | 184 | "The default command to run for \\[vc-git-grep]. |
| 185 | The following place holders should be present in the string: | 185 | The following place holders should be present in the string: |
| 186 | <C> - place to put the options like -i. | ||
| 186 | <F> - file names and wildcards to search. | 187 | <F> - file names and wildcards to search. |
| 187 | <R> - the regular expression searched for." | 188 | <R> - the regular expression searched for." |
| 188 | :type 'string | 189 | :type 'string |