Function: vi-home-window-line

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

Signature

(vi-home-window-line ARG)

Documentation

To window home or arg'th line from the top of the window.

Key Bindings

Source Code

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