Function: evil-window-decrease-height

evil-window-decrease-height is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-window-decrease-height COUNT)

Documentation

Decrease current window height by COUNT.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-window-decrease-height (count)
  "Decrease current window height by COUNT."
  :repeat nil
  (interactive "<w>")
  (enlarge-window (- count)))