Variable: vertico-buffer-mode
vertico-buffer-mode is a customizable variable defined in
vertico-buffer.el.
Value
nil
Documentation
Non-nil if Vertico-Buffer mode is enabled.
See the vertico-buffer-mode(var)/vertico-buffer-mode(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function vertico-buffer-mode(var)/vertico-buffer-mode(fun).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico-buffer.el
;;;###autoload
(define-minor-mode vertico-buffer-mode
"Display Vertico like a regular buffer in a large window."
:global t :group 'vertico
;; Shrink current minibuffer window
(when-let* ((win (active-minibuffer-window)))
(unless (frame-root-window-p win)
(window-resize win (- (window-pixel-height win)) nil nil 'pixelwise))
(with-selected-window win
(cond
((and vertico-buffer-mode vertico--input (not vertico-buffer--restore))
(vertico-buffer--setup))
((and (not vertico-buffer-mode) vertico-buffer--restore)
(funcall vertico-buffer--restore))))))