Variable: hui-select-rgrep-command

hui-select-rgrep-command is a customizable variable defined in hui-select.el.

Value

"grep -insIHr"

Documentation

Grep command string and initial arguments sent to hui-select-rgrep command.

It must end with a space.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
;;; ************************************************************************
;;; Public variables
;;; ************************************************************************

(defcustom hui-select-rgrep-command
  ;; Only the FreeBSD version of zgrep supports all of the grep
  ;; options that Hyperbole needs: -r, --include, and --exclude
  (format "%sgrep -insIHr" (if (and (executable-find "zgrep")
                                    (string-match-p "bsd" (shell-command-to-string "zgrep --version | head -1")))
                               "z" ""))
  "Grep command string and initial arguments sent to `hui-select-rgrep' command.
It must end with a space."
  :type 'string
  :group 'hyperbole-commands)