comparison man/basic.texi @ 35923:3ec035fea54a

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Tue, 06 Feb 2001 12:19:34 +0000
parents 054acbd5e9f7
children af4e219e9947
comparison
equal deleted inserted replaced
35922:7db14d32feb2 35923:3ec035fea54a
173 @item M-b 173 @item M-b
174 Move backward one word (@code{backward-word}). 174 Move backward one word (@code{backward-word}).
175 @item C-n 175 @item C-n
176 Move down one line, vertically (@code{next-line}). This command 176 Move down one line, vertically (@code{next-line}). This command
177 attempts to keep the horizontal position unchanged, so if you start in 177 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. When on 178 the middle of one line, you end in the middle of the next.
179 the last line of text, @kbd{C-n} creates a new line and moves onto it.
180 @item C-p 179 @item C-p
181 Move up one line, vertically (@code{previous-line}). 180 Move up one line, vertically (@code{previous-line}).
182 @item M-r 181 @item M-r
183 Move point to left margin, vertically centered in the window 182 Move point to left margin, vertically centered in the window
184 (@code{move-to-window-line}). Text does not move on the screen. 183 (@code{move-to-window-line}). Text does not move on the screen.
217 then @kbd{C-n} and @kbd{C-p} when at the end of the starting line move 216 then @kbd{C-n} and @kbd{C-p} when at the end of the starting line move
218 to the end of another line. Normally, @code{track-eol} is @code{nil}. 217 to the end of another line. Normally, @code{track-eol} is @code{nil}.
219 @xref{Variables}, for how to set variables such as @code{track-eol}. 218 @xref{Variables}, for how to set variables such as @code{track-eol}.
220 219
221 @vindex next-line-add-newlines 220 @vindex next-line-add-newlines
222 If non-@code{nil}, @kbd{C-n} on the last line of a buffer appends a 221 @kbd{C-n} normally gets an error when you use it on the last line of
223 newline to it. If the variable @code{next-line-add-newlines} is 222 the buffer (just as @kbd{C-p} gets an error on the first line). But
224 @code{nil}, the default, then @kbd{C-n} gets an error instead (like 223 if you set the variable @code{next-line-add-newlines} to a
225 @kbd{C-p} on the first line). 224 non-@code{nil} value, @kbd{C-n} on the last line of a buffer creates
225 an additional line at the end and moves down onto it.
226 226
227 @node Erasing 227 @node Erasing
228 @section Erasing Text 228 @section Erasing Text
229 229
230 @table @kbd 230 @table @kbd