Function: evil-window-bottom-right
evil-window-bottom-right is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-window-bottom-right)
Documentation
Move the cursor to bottom-right window.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-window-bottom-right ()
"Move the cursor to bottom-right window."
:repeat nil
(let ((last-sibling (frame-root-window)))
(while (and last-sibling (not (window-live-p last-sibling)))
(setq last-sibling (window-last-child last-sibling)))
(when last-sibling
(select-window last-sibling))))