emacs - the point
Table of Contents
The point
In Emacs, the current position of the cursor is called point. The expression (point) returns a number that tells you where the cursor is located as a count of the number of characters from the beginning of the buffer up to point.
Evaluate (Ctrl x Ctrl e) the following function:
(point)
To move the point to the top of the page (Vim H), middle of the page (Vim M) or the bottom of the page (Vim L): Meta r
How to do the following?
Move the point half page up? (Vim Ctrl u) Move the point half page down? (Vim Ctrl d)