Variable: consult-ripgrep-args

consult-ripgrep-args is a customizable variable defined in consult.el.

Value

"rg --null --line-buffered --color=never --max-columns=1000 --path-separator /   --smart-case --no-heading --with-filename --line-number --search-zip"

Documentation

Command line arguments for ripgrep, see consult-ripgrep.

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-ripgrep-args
  "rg --null --line-buffered --color=never --max-columns=1000 --path-separator /\
   --smart-case --no-heading --with-filename --line-number --search-zip"
  "Command line arguments for ripgrep, see `consult-ripgrep'.
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))))