diff options
| author | Eli Zaretskii | 2001-03-08 07:42:45 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-03-08 07:42:45 +0000 |
| commit | 21c983fc689f674c4d1b180e714e84c603877eab (patch) | |
| tree | b836ec297b18672b4ebd1dc6a71bac105856290c | |
| parent | c210f766a0d65c17ddcaff933821ccc58f470e4d (diff) | |
| download | emacs-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.texi | 19 |
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 |
| 166 | Move to the end of the line (@code{end-of-line}). | 166 | Move to the end of the line (@code{end-of-line}). |
| 167 | @item C-f | 167 | @item C-f |
| 168 | Move forward one character (@code{forward-char}). | 168 | Move forward one character (@code{forward-char}). The @key{->} right |
| 169 | arrow key, if your keyboard has it, does the same. | ||
| 169 | @item C-b | 170 | @item C-b |
| 170 | Move backward one character (@code{backward-char}). | 171 | Move backward one character (@code{backward-char}). The @key{<-} left |
| 172 | arrow key has the same effect. | ||
| 171 | @item M-f | 173 | @item M-f |
| 172 | Move forward one word (@code{forward-word}). | 174 | Move 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 |
| 176 | Move down one line, vertically (@code{next-line}). This command | 178 | Move down one line, vertically (@code{next-line}). This command |
| 177 | attempts to keep the horizontal position unchanged, so if you start in | 179 | attempts to keep the horizontal position unchanged, so if you start in |
| 178 | the middle of one line, you end in the middle of the next. | 180 | the middle of one line, you end in the middle of the next. The down |
| 181 | arrow key, if your keyboard has it, does the same. | ||
| 179 | @item C-p | 182 | @item C-p |
| 180 | Move up one line, vertically (@code{previous-line}). | 183 | Move up one line, vertically (@code{previous-line}). The up arrow key |
| 184 | has the same effect. | ||
| 181 | @item M-r | 185 | @item M-r |
| 182 | Move point to left margin, vertically centered in the window | 186 | Move 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 | |||
| 186 | screen lines down from the top of the window (zero for the top line). A | 190 | screen lines down from the top of the window (zero for the top line). A |
| 187 | negative argument counts lines from the bottom (@minus{}1 for the bottom | 191 | negative argument counts lines from the bottom (@minus{}1 for the bottom |
| 188 | line). | 192 | line). |
| 193 | @item C-v | ||
| 194 | Scroll the display forward one windowfull. If your keyboard has a | ||
| 195 | @key{PageDown} key, it does the same. Scrolling commands are further | ||
| 196 | described in @ref{Scrolling}. | ||
| 197 | @item M-v | ||
| 198 | Scroll the display backward one windowfull. The @key{PageUp} key has | ||
| 199 | the same effect. @xref{Scrolling}. | ||
| 189 | @item M-< | 200 | @item M-< |
| 190 | Move to the top of the buffer (@code{beginning-of-buffer}). With | 201 | Move to the top of the buffer (@code{beginning-of-buffer}). With |
| 191 | numeric argument @var{n}, move to @var{n}/10 of the way from the top. | 202 | numeric argument @var{n}, move to @var{n}/10 of the way from the top. |