Variable: consult-find-args

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

Value

"find . -not ( -path */.[A-Za-z]* -prune )"

Documentation

Command line arguments for find, see consult-find.

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-find-args
  "find . -not ( -path */.[A-Za-z]* -prune )"
  "Command line arguments for find, see `consult-find'.
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))))