Variable: consult-locate-args

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

Value

"locate --ignore-case"

Documentation

Command line arguments for locate, see consult-locate.

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-locate-args
  "locate --ignore-case" ;; --existing not supported by Debian plocate
  "Command line arguments for locate, see `consult-locate'.
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))))