Function: fido-vertical-mode
fido-vertical-mode is an autoloaded, interactive and byte-compiled
function defined in icomplete.el.gz.
Signature
(fido-vertical-mode &optional ARG)
Documentation
Toggle vertical candidate display in fido-mode(var)/fido-mode(fun).
When turning on, if non-vertical fido-mode(var)/fido-mode(fun) is off, turn it on.
If it's on, just add the vertical display.
This is a global minor mode. If called interactively, toggle the
Fido-Vertical mode mode. If the prefix argument is positive, enable
the mode, and if it is zero or negative, disable the mode.
If called from Lisp, toggle the mode if ARG is toggle. Enable the
mode if ARG is nil, omitted, or is a positive number. Disable the mode
if ARG is a negative number.
To check whether the minor mode is enabled in the current buffer,
evaluate (default-value \=fido-vertical-mode)'.
The mode's hook is called both when the mode is enabled and when it is disabled.
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)))