Variable: consult-fd-args

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

Value

((if
     (executable-find "fdfind" 'remote)
     "fdfind" "fd")
 "--full-path --color=never")

Documentation

Command line arguments for fd, see consult-fd.

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-fd-args
  '((if (executable-find "fdfind" 'remote) "fdfind" "fd")
    "--full-path --color=never")
  "Command line arguments for fd, see `consult-fd'.
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))))