Function: evil-window-down

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

Signature

(evil-window-down COUNT)

Documentation

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

Key Bindings

Source Code

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