Function: evil-window-up
evil-window-up is an interactive and byte-compiled function defined in
evil-commands.el.
Signature
(evil-window-up COUNT)
Documentation
Move the cursor to new COUNT-th window above the current one.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-window-up (count)
"Move the cursor to new COUNT-th window above the current one."
:repeat nil
(interactive "<w>")
(dotimes (_ (or count 1))
(windmove-up)))