Function: evil-window-decrease-width
evil-window-decrease-width is an interactive and byte-compiled
function defined in evil-commands.el.
Signature
(evil-window-decrease-width COUNT)
Documentation
Decrease current window width by COUNT.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-window-decrease-width (count)
"Decrease current window width by COUNT."
:repeat nil
(interactive "<w>")
(enlarge-window (- count) t))