Function: vcursor-beginning-of-buffer

vcursor-beginning-of-buffer is an interactive and byte-compiled function defined in vcursor.el.gz.

Signature

(vcursor-beginning-of-buffer &optional ARG)

Documentation

Move the virtual cursor to the beginning of its buffer.

ARG is as for beginning-of-buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-beginning-of-buffer (&optional arg)
  "Move the virtual cursor to the beginning of its buffer.
ARG is as for `beginning-of-buffer'."
  (interactive "P")
  (vcursor-relative-move
   (lambda (arg)
     (goto-char (if arg (/ (* arg (- (point-max) (point-min))) 10)
		  (point-min))))
   (if arg (prefix-numeric-value arg)))
  )