Variable: consult-git-grep-args

consult-git-grep-args is a customizable variable defined in consult.el.

Value

"git --no-pager grep --null --color=never --ignore-case   --extended-regexp --line-number -I"

Documentation

Command line arguments for git-grep, see consult-git-grep.

The dynamically computed arguments are appended. Can be either a string, or a list of strings or expressions.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defcustom consult-git-grep-args
  "git --no-pager grep --null --color=never --ignore-case\
   --extended-regexp --line-number -I"
  "Command line arguments for git-grep, see `consult-git-grep'.
The dynamically computed arguments are appended.
Can be either a string, or a list of strings or expressions."
  :type '(choice string (repeat (choice string sexp))))