Function: evil-window-increase-width

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

Signature

(evil-window-increase-width COUNT)

Documentation

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