Function: evil-window-bottom

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

Signature

(evil-window-bottom &optional COUNT)

Documentation

Move the cursor to line COUNT from the bottom of the window.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-window-bottom (count)
  "Move the cursor to line COUNT from the bottom of the window."
  :jump t
  :type line
  (evil-ensure-column
    (move-to-window-line
     (- (max (or count 1)
             (if (or (zerop scroll-margin)
                     (< (count-screen-lines (point) (window-end))
                        scroll-margin))
                 1
               (1+ scroll-margin)))))))