Variable: vertico-grid-mode
vertico-grid-mode is a customizable variable defined in
vertico-grid.el.
Value
nil
Documentation
Non-nil if Vertico-Grid mode is enabled.
See the vertico-grid-mode(var)/vertico-grid-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-grid-mode(var)/vertico-grid-mode(fun).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/vertico-20260811.1003/vertico-grid.el
;;;###autoload
(define-minor-mode vertico-grid-mode
"Grid display for Vertico."
: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)))
(cl-callf2 rassq-delete-all vertico-grid-map minor-mode-map-alist)
(when vertico-grid-mode
(push `(vertico--input . ,vertico-grid-map) minor-mode-map-alist)))