Function: evil-window-set-height
evil-window-set-height is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-window-set-height COUNT)
Documentation
Set the height of the current window to COUNT.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-window-set-height (count)
"Set the height of the current window to COUNT."
:repeat nil
(interactive "<wc>")
(evil-resize-window (or count (frame-height)) nil))