Function: vi-beginning-of-buffer
vi-beginning-of-buffer is an interactive and byte-compiled function
defined in vi.el.gz.
Signature
(vi-beginning-of-buffer)
Documentation
Move point to the beginning of current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-beginning-of-buffer ()
"Move point to the beginning of current buffer."
(interactive)
(goto-char (point-min)))