Variable: hsys-consult-flag

hsys-consult-flag is a customizable variable defined in hsys-consult.el.

Value

t

Documentation

Non-nil means use the consult package with vertico for filtering searches.

When non-nil and interactively calling non-consult-specific Hyperbole search and yank commands, if consult is installed it will be used to filter to matching file lines. For Hyperbole consult-specific commands, when this is non-nil and consult is not installed, automatically install it and then run the command. When nil, trigger an error that consult is not installed.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-consult.el
(defcustom hsys-consult-flag t
  "Non-nil means use the consult package with vertico for filtering searches.
When non-nil and interactively calling non-consult-specific
Hyperbole search and yank commands, if consult is installed it
will be used to filter to matching file lines.  For Hyperbole
consult-specific commands, when this is non-nil and consult is
not installed, automatically install it and then run the command.
When nil, trigger an error that consult is not installed."
  :type 'boolean
  :group 'hyperbole-commands)