Function: evil-window-increase-height

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

Signature

(evil-window-increase-height COUNT)

Documentation

Increase 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-increase-height (count)
  "Increase current window height by COUNT."
  :repeat nil
  (interactive "<w>")
  (enlarge-window count))