]> git.eshelyaron.com Git - emacs.git/commitdiff
Add imenu support to package-menu-mode
authorAntoine Beaupré <anarcat@orangeseeds.org>
Tue, 25 Jun 2019 10:58:36 +0000 (12:58 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 25 Jun 2019 11:10:07 +0000 (13:10 +0200)
* lisp/vc/vc-git.el (vc-git-grep-template): Include <C> in
template to be more consistent with lgrep/rgrep (bug#35326).  This
will introduce the --color and -i flags to the "git grep" command.

Copyright-paperwork-exempt: yes

lisp/vc/vc-git.el

index 30ec712cfc1279c7623922e42c94f03673b76eca..f62e108322962d77304f4c623cbc2af9c46bf247 100644 (file)
@@ -180,9 +180,10 @@ Should be consistent with the Git config value i18n.logOutputEncoding."
   :type '(coding-system :tag "Coding system to decode Git log output")
   :version "25.1")
 
-(defcustom vc-git-grep-template "git --no-pager grep -n -e <R> -- <F>"
+(defcustom vc-git-grep-template "git --no-pager grep -n <C> -e <R> -- <F>"
   "The default command to run for \\[vc-git-grep].
 The following place holders should be present in the string:
+ <C> - place to put the options like -i.
  <F> - file names and wildcards to search.
  <R> - the regular expression searched for."
   :type 'string