Function: evil-window-right

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

Signature

(evil-window-right COUNT)

Documentation

Move the cursor to new COUNT-th window right of the current one.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-window-right (count)
  "Move the cursor to new COUNT-th window right of the current one."
  :repeat nil
  (interactive "<w>")
  (dotimes (_ count)
    (windmove-right)))