Variable: consult--customize-alist

consult--customize-alist is a variable defined in consult.el.

Value

((consult-buffer-other-frame :preview-key nil)
 (consult-buffer-other-tab :preview-key nil))

Documentation

Command configuration alist for fine-grained configuration.

Each element of the list must have the form (command-name plist...). The options set here will be evaluated and passed to consult--read, when called from the corresponding command. Note that the options depend on the private consult--read API and should not be considered as stable as the public API.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defvar consult--customize-alist
  ;; Disable preview in frames, since `consult--jump-preview' does not properly
  ;; clean up.  See gh:minad/consult#593. This issue should better be fixed in
  ;; `consult--jump-preview'.
  `((,#'consult-buffer-other-frame :preview-key nil)
    (,#'consult-buffer-other-tab :preview-key nil))
  "Command configuration alist for fine-grained configuration.

Each element of the list must have the form (command-name plist...).  The
options set here will be evaluated and passed to `consult--read', when
called from the corresponding command.  Note that the options depend on
the private `consult--read' API and should not be considered as stable
as the public API.")