aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-03-08 07:42:45 +0000
committerEli Zaretskii2001-03-08 07:42:45 +0000
commit21c983fc689f674c4d1b180e714e84c603877eab (patch)
treeb836ec297b18672b4ebd1dc6a71bac105856290c
parentc210f766a0d65c17ddcaff933821ccc58f470e4d (diff)
downloademacs-21c983fc689f674c4d1b180e714e84c603877eab.tar.gz
emacs-21c983fc689f674c4d1b180e714e84c603877eab.zip
(Moving Point): Mention C-v and M-v, and the arrow keys.
From Simon Green <simon@elixir-studios.co.uk>.
-rw-r--r--man/basic.texi19
1 files changed, 15 insertions, 4 deletions
diff --git a/man/basic.texi b/man/basic.texi
index b6bd0fecf69..db2b08513a1 100644
--- a/man/basic.texi
+++ b/man/basic.texi
@@ -165,9 +165,11 @@ Move to the beginning of the line (@code{beginning-of-line}).
165@item C-e 165@item C-e
166Move to the end of the line (@code{end-of-line}). 166Move to the end of the line (@code{end-of-line}).
167@item C-f 167@item C-f
168Move forward one character (@code{forward-char}). 168Move forward one character (@code{forward-char}). The @key{->} right
169arrow key, if your keyboard has it, does the same.
169@item C-b 170@item C-b
170Move backward one character (@code{backward-char}). 171Move backward one character (@code{backward-char}). The @key{<-} left
172arrow key has the same effect.
171@item M-f 173@item M-f
172Move forward one word (@code{forward-word}). 174Move forward one word (@code{forward-word}).
173@item M-b 175@item M-b
@@ -175,9 +177,11 @@ Move backward one word (@code{backward-word}).
175@item C-n 177@item C-n
176Move down one line, vertically (@code{next-line}). This command 178Move down one line, vertically (@code{next-line}). This command
177attempts to keep the horizontal position unchanged, so if you start in 179attempts to keep the horizontal position unchanged, so if you start in
178the middle of one line, you end in the middle of the next. 180the middle of one line, you end in the middle of the next. The down
181arrow key, if your keyboard has it, does the same.
179@item C-p 182@item C-p
180Move up one line, vertically (@code{previous-line}). 183Move up one line, vertically (@code{previous-line}). The up arrow key
184has the same effect.
181@item M-r 185@item M-r
182Move point to left margin, vertically centered in the window 186Move point to left margin, vertically centered in the window
183(@code{move-to-window-line}). Text does not move on the screen. 187(@code{move-to-window-line}). Text does not move on the screen.
@@ -186,6 +190,13 @@ A numeric argument says which screen line to place point on. It counts
186screen lines down from the top of the window (zero for the top line). A 190screen lines down from the top of the window (zero for the top line). A
187negative argument counts lines from the bottom (@minus{}1 for the bottom 191negative argument counts lines from the bottom (@minus{}1 for the bottom
188line). 192line).
193@item C-v
194Scroll the display forward one windowfull. If your keyboard has a
195@key{PageDown} key, it does the same. Scrolling commands are further
196described in @ref{Scrolling}.
197@item M-v
198Scroll the display backward one windowfull. The @key{PageUp} key has
199the same effect. @xref{Scrolling}.
189@item M-< 200@item M-<
190Move to the top of the buffer (@code{beginning-of-buffer}). With 201Move to the top of the buffer (@code{beginning-of-buffer}). With
191numeric argument @var{n}, move to @var{n}/10 of the way from the top. 202numeric argument @var{n}, move to @var{n}/10 of the way from the top.