Function: evil-window-set-width

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

Signature

(evil-window-set-width COUNT)

Documentation

Set the width 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-width (count)
  "Set the width of the current window to COUNT."
  :repeat nil
  (interactive "<wc>")
  (evil-resize-window (or count (frame-width)) t))