Function: vcursor-end-of-buffer

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

Signature

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

Documentation

Move the virtual cursor to the end of its buffer.

ARG is as for end-of-buffer.

Actually, the vcursor is moved to the second from last character or it would be invisible.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-end-of-buffer (&optional arg)
  "Move the virtual cursor to the end of its buffer.
ARG is as for `end-of-buffer'.

Actually, the vcursor is moved to the second from last character or it
would be invisible."
  (interactive "P")
  (vcursor-relative-move
   (lambda (arg)
     (goto-char (if arg (- (point-max)
			   (/ (* arg (- (point-max) (point-min))) 10))
		  (point-max))))
   (if arg (prefix-numeric-value arg)))
  )