Variable: consult-preview-key

consult-preview-key is a customizable variable defined in consult.el.

Value

any

Documentation

Preview trigger keys, can be nil, any, a single key or a list of keys.

Debouncing can be specified via the :debounce attribute. The individual keys must be strings accepted by key-valid-p.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defcustom consult-preview-key 'any
  "Preview trigger keys, can be nil, `any', a single key or a list of keys.
Debouncing can be specified via the `:debounce' attribute.  The
individual keys must be strings accepted by `key-valid-p'."
  :type '(choice (const :tag "Any key" any)
                 (list :tag "Debounced"
                       (const :debounce)
                       (float :tag "Seconds" 0.1)
                       (const any))
                 (const :tag "No preview" nil)
                 (key :tag "Key")
                 (repeat :tag "List of keys" key)))