Variable: fido-vertical-mode

fido-vertical-mode is a customizable variable defined in icomplete.el.gz.

Value

nil

Documentation

Non-nil if Fido-Vertical mode is enabled.

See the fido-vertical-mode(var)/fido-vertical-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 fido-vertical-mode(var)/fido-vertical-mode(fun).

Probably introduced at or before Emacs version 28.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/icomplete.el.gz
;;;###autoload
(define-minor-mode fido-vertical-mode
  "Toggle vertical candidate display in `fido-mode'.
When turning on, if non-vertical `fido-mode' is off, turn it on.
If it's on, just add the vertical display."
  :global t
  (icomplete-vertical-mode -1)
  (when fido-vertical-mode
    (unless fido-mode (fido-mode 1))
    (icomplete-vertical-mode 1)))