Function: vi-last-window-line

vi-last-window-line is an interactive and byte-compiled function defined in vi.el.gz.

Signature

(vi-last-window-line ARG)

Documentation

To window last line or arg'th line from the bottom of the window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-last-window-line (arg)
  "To window last line or arg'th line from the bottom of the window."
  (interactive "p")
  (move-to-window-line (- arg))
  (back-to-indentation))