Mercurial > emacs
annotate man/basic.texi @ 36658:37176906f4de
(M-x): Fix last change.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 08 Mar 2001 09:05:01 +0000 |
parents | 8abc334af58e |
children | c3461a4e8d2e |
rev | line source |
---|---|
25829 | 1 @c This is part of the Emacs manual. |
27220
dddb1bca9704
Reference column-number-mode, hl-line-mode, blink-cursor-mode.
Dave Love <fx@gnu.org>
parents:
25829
diff
changeset
|
2 @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000 Free Software Foundation, Inc. |
25829 | 3 @c See file emacs.texi for copying conditions. |
4 @node Basic, Minibuffer, Exiting, Top | |
5 @chapter Basic Editing Commands | |
6 | |
7 @kindex C-h t | |
8 @findex help-with-tutorial | |
9 We now give the basics of how to enter text, make corrections, and | |
10 save the text in a file. If this material is new to you, you might | |
11 learn it more easily by running the Emacs learn-by-doing tutorial. To | |
12 use the tutorial, run Emacs and type @kbd{Control-h t} | |
13 (@code{help-with-tutorial}). | |
14 | |
15 To clear the screen and redisplay, type @kbd{C-l} (@code{recenter}). | |
16 | |
17 @menu | |
18 | |
19 * Inserting Text:: Inserting text by simply typing it. | |
20 * Moving Point:: How to move the cursor to the place where you want to | |
21 change something. | |
22 * Erasing:: Deleting and killing text. | |
23 * Undo:: Undoing recent changes in the text. | |
24 * Files: Basic Files. Visiting, creating, and saving files. | |
25 * Help: Basic Help. Asking what a character does. | |
26 * Blank Lines:: Commands to make or delete blank lines. | |
27 * Continuation Lines:: Lines too wide for the screen. | |
28 * Position Info:: What page, line, row, or column is point on? | |
29 * Arguments:: Numeric arguments for repeating a command. | |
30 * Repeating:: A short-cut for repeating the previous command. | |
31 @end menu | |
32 | |
33 @node Inserting Text | |
34 @section Inserting Text | |
35 | |
36 @cindex insertion | |
37 @cindex graphic characters | |
38 To insert printing characters into the text you are editing, just type | |
39 them. This inserts the characters you type into the buffer at the | |
40 cursor (that is, at @dfn{point}; @pxref{Point}). The cursor moves | |
41 forward, and any text after the cursor moves forward too. If the text | |
42 in the buffer is @samp{FOOBAR}, with the cursor before the @samp{B}, | |
43 then if you type @kbd{XX}, you get @samp{FOOXXBAR}, with the cursor | |
44 still before the @samp{B}. | |
45 | |
46 To @dfn{delete} text you have just inserted, use @key{DEL}. @key{DEL} | |
47 deletes the character @emph{before} the cursor (not the one that the cursor | |
48 is on top of or under; that is the character @var{after} the cursor). The | |
49 cursor and all characters after it move backwards. Therefore, if you type | |
50 a printing character and then type @key{DEL}, they cancel out. | |
51 | |
36654
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
52 @kindex BS |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
53 @kindex backspace |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
54 Note that many keyboards label the @key{DEL} key as @key{BS} or |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
55 @key{<-}, and you might be used to refer to it as the ``backspace key''. |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
56 In addition, many modern keyboards have a separate function key labeled |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
57 @key{Delete} or @key{Del}, which is normally bound to the |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
58 @code{delete-char} command and deletes the character @emph{after} the |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
59 cursor (@pxref{Deletion}). Do not confuse @key{Delete} with |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
60 @key{DEL}---these are two different keys! @xref{Named ASCII Chars}, for |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
61 more details about special function keys recognized by Emacs. |
8abc334af58e
(Inserting Text): Add a note aboute the DEL/Delete/BS controversy.
Eli Zaretskii <eliz@gnu.org>
parents:
36651
diff
changeset
|
62 |
25829 | 63 @kindex RET |
64 @cindex newline | |
65 To end a line and start typing a new one, type @key{RET}. This | |
66 inserts a newline character in the buffer. If point is in the middle of | |
67 a line, @key{RET} splits the line. Typing @key{DEL} when the cursor is | |
68 at the beginning of a line deletes the preceding newline, thus joining | |
69 the line with the preceding line. | |
70 | |
71 Emacs can split lines automatically when they become too long, if you | |
72 turn on a special minor mode called @dfn{Auto Fill} mode. | |
73 @xref{Filling}, for how to use Auto Fill mode. | |
74 | |
75 If you prefer to have text characters replace (overwrite) existing | |
76 text rather than shove it to the right, you can enable Overwrite mode, | |
77 a minor mode. @xref{Minor Modes}. | |
78 | |
79 @cindex quoting | |
80 @kindex C-q | |
81 @findex quoted-insert | |
82 Direct insertion works for printing characters and @key{SPC}, but other | |
83 characters act as editing commands and do not insert themselves. If you | |
84 need to insert a control character or a character whose code is above 200 | |
85 octal, you must @dfn{quote} it by typing the character @kbd{Control-q} | |
86 (@code{quoted-insert}) first. (This character's name is normally written | |
87 @kbd{C-q} for short.) There are two ways to use @kbd{C-q}:@refill | |
88 | |
89 @itemize @bullet | |
90 @item | |
91 @kbd{C-q} followed by any non-graphic character (even @kbd{C-g}) | |
92 inserts that character. | |
93 | |
94 @item | |
95 @kbd{C-q} followed by a sequence of octal digits inserts the character | |
96 with the specified octal character code. You can use any number of | |
97 octal digits; any non-digit terminates the sequence. If the terminating | |
98 character is @key{RET}, it serves only to terminate the sequence; any | |
99 other non-digit is itself used as input after terminating the sequence. | |
100 (The use of octal sequences is disabled in ordinary non-binary Overwrite | |
101 mode, to give you a convenient way to insert a digit instead of | |
102 overwriting with it.) | |
103 @end itemize | |
104 | |
33552
82d0163f6fb7
Say "ISO 8859" instead of "ISO Latin", to cover non-Latin ISO-8859
Eli Zaretskii <eliz@gnu.org>
parents:
33518
diff
changeset
|
105 @cindex 8-bit character codes |
25829 | 106 @noindent |
33518 | 107 When multibyte characters are enabled, if you specify a code in the |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
108 range 0200 through 0377 octal, @kbd{C-q} assumes that you intend to |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
109 use some ISO 8859-@var{n} character set, and converts the specified |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
110 code to the corresponding Emacs character code. @xref{Enabling |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
111 Multibyte}. You select @emph{which} of the ISO 8859 character sets to |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
112 use through your choice of language environment (@pxref{Language |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
113 Environments}). |
25829 | 114 |
115 @vindex read-quoted-char-radix | |
116 To use decimal or hexadecimal instead of octal, set the variable | |
117 @code{read-quoted-char-radix} to 10 or 16. If the radix is greater than | |
118 10, some letters starting with @kbd{a} serve as part of a character | |
119 code, just like digits. | |
120 | |
121 A numeric argument to @kbd{C-q} specifies how many copies of the | |
122 quoted character should be inserted (@pxref{Arguments}). | |
123 | |
124 @findex newline | |
125 @findex self-insert | |
126 Customization information: @key{DEL} in most modes runs the command | |
127 @code{delete-backward-char}; @key{RET} runs the command @code{newline}, and | |
128 self-inserting printing characters run the command @code{self-insert}, | |
129 which inserts whatever character was typed to invoke it. Some major modes | |
130 rebind @key{DEL} to other commands. | |
131 | |
132 @node Moving Point | |
133 @section Changing the Location of Point | |
134 | |
135 @cindex arrow keys | |
136 @kindex LEFT | |
137 @kindex RIGHT | |
138 @kindex UP | |
139 @kindex DOWN | |
140 @cindex moving point | |
141 @cindex movement | |
142 @cindex cursor motion | |
143 @cindex moving the cursor | |
144 To do more than insert characters, you have to know how to move point | |
145 (@pxref{Point}). The simplest way to do this is with arrow keys, or by | |
146 clicking the left mouse button where you want to move to. | |
147 | |
148 There are also control and meta characters for cursor motion. Some | |
149 are equivalent to the arrow keys (these date back to the days before | |
150 terminals had arrow keys, and are usable on terminals which don't have | |
151 them). Others do more sophisticated things. | |
152 | |
153 @kindex C-a | |
154 @kindex C-e | |
155 @kindex C-f | |
156 @kindex C-b | |
157 @kindex C-n | |
158 @kindex C-p | |
159 @kindex M-> | |
160 @kindex M-< | |
161 @kindex M-r | |
162 @findex beginning-of-line | |
163 @findex end-of-line | |
164 @findex forward-char | |
165 @findex backward-char | |
166 @findex next-line | |
167 @findex previous-line | |
168 @findex beginning-of-buffer | |
169 @findex end-of-buffer | |
170 @findex goto-char | |
171 @findex goto-line | |
172 @findex move-to-window-line | |
173 @table @kbd | |
174 @item C-a | |
175 Move to the beginning of the line (@code{beginning-of-line}). | |
176 @item C-e | |
177 Move to the end of the line (@code{end-of-line}). | |
178 @item C-f | |
36651
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
179 Move forward one character (@code{forward-char}). The @key{->} right |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
180 arrow key, if your keyboard has it, does the same. |
25829 | 181 @item C-b |
36651
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
182 Move backward one character (@code{backward-char}). The @key{<-} left |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
183 arrow key has the same effect. |
25829 | 184 @item M-f |
185 Move forward one word (@code{forward-word}). | |
186 @item M-b | |
187 Move backward one word (@code{backward-word}). | |
188 @item C-n | |
189 Move down one line, vertically (@code{next-line}). This command | |
190 attempts to keep the horizontal position unchanged, so if you start in | |
36651
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
191 the middle of one line, you end in the middle of the next. The down |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
192 arrow key, if your keyboard has it, does the same. |
25829 | 193 @item C-p |
36651
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
194 Move up one line, vertically (@code{previous-line}). The up arrow key |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
195 has the same effect. |
25829 | 196 @item M-r |
197 Move point to left margin, vertically centered in the window | |
198 (@code{move-to-window-line}). Text does not move on the screen. | |
199 | |
200 A numeric argument says which screen line to place point on. It counts | |
201 screen lines down from the top of the window (zero for the top line). A | |
202 negative argument counts lines from the bottom (@minus{}1 for the bottom | |
203 line). | |
36651
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
204 @item C-v |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
205 Scroll the display forward one windowfull. If your keyboard has a |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
206 @key{PageDown} key, it does the same. Scrolling commands are further |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
207 described in @ref{Scrolling}. |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
208 @item M-v |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
209 Scroll the display backward one windowfull. The @key{PageUp} key has |
f16f21a469b1
(Moving Point): Mention C-v and M-v, and the arrow keys.
Eli Zaretskii <eliz@gnu.org>
parents:
36263
diff
changeset
|
210 the same effect. @xref{Scrolling}. |
25829 | 211 @item M-< |
212 Move to the top of the buffer (@code{beginning-of-buffer}). With | |
213 numeric argument @var{n}, move to @var{n}/10 of the way from the top. | |
214 @xref{Arguments}, for more information on numeric arguments.@refill | |
215 @item M-> | |
216 Move to the end of the buffer (@code{end-of-buffer}). | |
217 @item M-x goto-char | |
218 Read a number @var{n} and move point to buffer position @var{n}. | |
219 Position 1 is the beginning of the buffer. | |
220 @item M-x goto-line | |
221 Read a number @var{n} and move point to line number @var{n}. Line 1 | |
222 is the beginning of the buffer. | |
223 @item C-x C-n | |
224 @findex set-goal-column | |
225 @kindex C-x C-n | |
226 Use the current column of point as the @dfn{semipermanent goal column} for | |
227 @kbd{C-n} and @kbd{C-p} (@code{set-goal-column}). Henceforth, those | |
228 commands always move to this column in each line moved into, or as | |
229 close as possible given the contents of the line. This goal column remains | |
230 in effect until canceled. | |
231 @item C-u C-x C-n | |
232 Cancel the goal column. Henceforth, @kbd{C-n} and @kbd{C-p} once | |
233 again try to stick to a fixed horizontal position, as usual. | |
234 @end table | |
235 | |
236 @vindex track-eol | |
237 If you set the variable @code{track-eol} to a non-@code{nil} value, | |
238 then @kbd{C-n} and @kbd{C-p} when at the end of the starting line move | |
239 to the end of another line. Normally, @code{track-eol} is @code{nil}. | |
240 @xref{Variables}, for how to set variables such as @code{track-eol}. | |
241 | |
242 @vindex next-line-add-newlines | |
35923 | 243 @kbd{C-n} normally gets an error when you use it on the last line of |
244 the buffer (just as @kbd{C-p} gets an error on the first line). But | |
245 if you set the variable @code{next-line-add-newlines} to a | |
246 non-@code{nil} value, @kbd{C-n} on the last line of a buffer creates | |
247 an additional line at the end and moves down onto it. | |
25829 | 248 |
249 @node Erasing | |
250 @section Erasing Text | |
251 | |
252 @table @kbd | |
253 @item @key{DEL} | |
254 Delete the character before point (@code{delete-backward-char}). | |
255 @item C-d | |
256 Delete the character after point (@code{delete-char}). | |
257 @item C-k | |
258 Kill to the end of the line (@code{kill-line}). | |
259 @item M-d | |
260 Kill forward to the end of the next word (@code{kill-word}). | |
261 @item M-@key{DEL} | |
262 Kill back to the beginning of the previous word | |
263 (@code{backward-kill-word}). | |
264 @end table | |
265 | |
266 @cindex killing characters and lines | |
267 @cindex deleting characters and lines | |
268 @cindex erasing characters and lines | |
269 You already know about the @key{DEL} key which deletes the character | |
270 before point (that is, before the cursor). Another key, @kbd{Control-d} | |
271 (@kbd{C-d} for short), deletes the character after point (that is, the | |
272 character that the cursor is on). This shifts the rest of the text on | |
273 the line to the left. If you type @kbd{C-d} at the end of a line, it | |
274 joins together that line and the next line. | |
275 | |
276 To erase a larger amount of text, use the @kbd{C-k} key, which kills a | |
277 line at a time. If you type @kbd{C-k} at the beginning or middle of a | |
278 line, it kills all the text up to the end of the line. If you type | |
279 @kbd{C-k} at the end of a line, it joins that line and the next line. | |
280 | |
281 @xref{Killing}, for more flexible ways of killing text. | |
282 | |
283 @node Undo | |
284 @section Undoing Changes | |
285 @cindex undo | |
286 @cindex changes, undoing | |
287 | |
288 You can undo all the recent changes in the buffer text, up to a | |
289 certain point. Each buffer records changes individually, and the undo | |
290 command always applies to the current buffer. Usually each editing | |
291 command makes a separate entry in the undo records, but some commands | |
292 such as @code{query-replace} make many entries, and very simple commands | |
293 such as self-inserting characters are often grouped to make undoing less | |
294 tedious. | |
295 | |
296 @table @kbd | |
297 @item C-x u | |
298 Undo one batch of changes---usually, one command worth (@code{undo}). | |
299 @item C-_ | |
300 The same. | |
301 @item C-u C-x u | |
302 Undo one batch of changes in the region. | |
303 @end table | |
304 | |
305 @kindex C-x u | |
306 @kindex C-_ | |
307 @findex undo | |
308 The command @kbd{C-x u} or @kbd{C-_} is how you undo. The first time | |
309 you give this command, it undoes the last change. Point moves back to | |
310 where it was before the command that made the change. | |
311 | |
312 Consecutive repetitions of @kbd{C-_} or @kbd{C-x u} undo earlier and | |
313 earlier changes, back to the limit of the undo information available. | |
314 If all recorded changes have already been undone, the undo command | |
315 prints an error message and does nothing. | |
316 | |
317 Any command other than an undo command breaks the sequence of undo | |
318 commands. Starting from that moment, the previous undo commands become | |
319 ordinary changes that you can undo. Thus, to redo changes you have | |
320 undone, type @kbd{C-f} or any other command that will harmlessly break | |
321 the sequence of undoing, then type more undo commands. | |
322 | |
323 @cindex selective undo | |
324 @kindex C-u C-x u | |
325 Ordinary undo applies to all changes made in the current buffer. You | |
326 can also perform @dfn{selective undo}, limited to the current region. | |
327 To do this, specify the region you want, then run the @code{undo} | |
328 command with a prefix argument (the value does not matter): @kbd{C-u C-x | |
329 u} or @kbd{C-u C-_}. This undoes the most recent change in the region. | |
330 To undo further changes in the same region, repeat the @code{undo} | |
331 command (no prefix argument is needed). In Transient Mark mode, any use | |
332 of @code{undo} when there is an active region performs selective undo; | |
333 you do not need a prefix argument. | |
334 | |
335 If you notice that a buffer has been modified accidentally, the | |
336 easiest way to recover is to type @kbd{C-_} repeatedly until the stars | |
337 disappear from the front of the mode line. At this time, all the | |
338 modifications you made have been canceled. Whenever an undo command | |
339 makes the stars disappear from the mode line, it means that the buffer | |
340 contents are the same as they were when the file was last read in or | |
341 saved. | |
342 | |
343 If you do not remember whether you changed the buffer deliberately, | |
344 type @kbd{C-_} once. When you see the last change you made undone, you | |
345 will see whether it was an intentional change. If it was an accident, | |
346 leave it undone. If it was deliberate, redo the change as described | |
347 above. | |
348 | |
349 Not all buffers record undo information. Buffers whose names start with | |
350 spaces don't; these buffers are used internally by Emacs and its extensions | |
351 to hold text that users don't normally look at or edit. | |
352 | |
353 You cannot undo mere cursor motion; only changes in the buffer | |
354 contents save undo information. However, some cursor motion commands | |
355 set the mark, so if you use these commands from time to time, you can | |
356 move back to the neighborhoods you have moved through by popping the | |
357 mark ring (@pxref{Mark Ring}). | |
358 | |
359 @vindex undo-limit | |
360 @vindex undo-strong-limit | |
361 @cindex undo limit | |
362 When the undo information for a buffer becomes too large, Emacs | |
363 discards the oldest undo information from time to time (during garbage | |
364 collection). You can specify how much undo information to keep by | |
365 setting two variables: @code{undo-limit} and @code{undo-strong-limit}. | |
366 Their values are expressed in units of bytes of space. | |
367 | |
368 The variable @code{undo-limit} sets a soft limit: Emacs keeps undo | |
369 data for enough commands to reach this size, and perhaps exceed it, but | |
370 does not keep data for any earlier commands beyond that. Its default | |
371 value is 20000. The variable @code{undo-strong-limit} sets a stricter | |
372 limit: the command which pushes the size past this amount is itself | |
373 forgotten. Its default value is 30000. | |
374 | |
375 Regardless of the values of those variables, the most recent change is | |
376 never discarded, so there is no danger that garbage collection occurring | |
377 right after an unintentional large change might prevent you from undoing | |
378 it. | |
379 | |
380 The reason the @code{undo} command has two keys, @kbd{C-x u} and | |
381 @kbd{C-_}, set up to run it is that it is worthy of a single-character | |
382 key, but on some keyboards it is not obvious how to type @kbd{C-_}. | |
383 @kbd{C-x u} is an alternative you can type straightforwardly on any | |
384 terminal. | |
385 | |
386 @node Basic Files | |
387 @section Files | |
388 | |
389 The commands described above are sufficient for creating and altering | |
390 text in an Emacs buffer; the more advanced Emacs commands just make | |
391 things easier. But to keep any text permanently you must put it in a | |
392 @dfn{file}. Files are named units of text which are stored by the | |
393 operating system for you to retrieve later by name. To look at or use | |
394 the contents of a file in any way, including editing the file with | |
395 Emacs, you must specify the file name. | |
396 | |
397 Consider a file named @file{/usr/rms/foo.c}. In Emacs, to begin editing | |
398 this file, type | |
399 | |
400 @example | |
401 C-x C-f /usr/rms/foo.c @key{RET} | |
402 @end example | |
403 | |
404 @noindent | |
405 Here the file name is given as an @dfn{argument} to the command @kbd{C-x | |
406 C-f} (@code{find-file}). That command uses the @dfn{minibuffer} to | |
407 read the argument, and you type @key{RET} to terminate the argument | |
408 (@pxref{Minibuffer}).@refill | |
409 | |
410 Emacs obeys the command by @dfn{visiting} the file: creating a buffer, | |
411 copying the contents of the file into the buffer, and then displaying | |
412 the buffer for you to edit. If you alter the text, you can @dfn{save} | |
413 the new text in the file by typing @kbd{C-x C-s} (@code{save-buffer}). | |
414 This makes the changes permanent by copying the altered buffer contents | |
415 back into the file @file{/usr/rms/foo.c}. Until you save, the changes | |
416 exist only inside Emacs, and the file @file{foo.c} is unaltered. | |
417 | |
418 To create a file, just visit the file with @kbd{C-x C-f} as if it | |
419 already existed. This creates an empty buffer in which you can insert | |
420 the text you want to put in the file. The file is actually created when | |
421 you save this buffer with @kbd{C-x C-s}. | |
422 | |
423 Of course, there is a lot more to learn about using files. @xref{Files}. | |
424 | |
425 @node Basic Help | |
426 @section Help | |
427 | |
428 @cindex getting help with keys | |
429 If you forget what a key does, you can find out with the Help | |
430 character, which is @kbd{C-h} (or @key{F1}, which is an alias for | |
431 @kbd{C-h}). Type @kbd{C-h k} followed by the key you want to know | |
432 about; for example, @kbd{C-h k C-n} tells you all about what @kbd{C-n} | |
433 does. @kbd{C-h} is a prefix key; @kbd{C-h k} is just one of its | |
434 subcommands (the command @code{describe-key}). The other subcommands of | |
435 @kbd{C-h} provide different kinds of help. Type @kbd{C-h} twice to get | |
436 a description of all the help facilities. @xref{Help}.@refill | |
437 | |
438 @node Blank Lines | |
439 @section Blank Lines | |
440 | |
441 @cindex inserting blank lines | |
442 @cindex deleting blank lines | |
443 Here are special commands and techniques for putting in and taking out | |
444 blank lines. | |
445 | |
446 @c widecommands | |
447 @table @kbd | |
448 @item C-o | |
449 Insert one or more blank lines after the cursor (@code{open-line}). | |
450 @item C-x C-o | |
451 Delete all but one of many consecutive blank lines | |
452 (@code{delete-blank-lines}). | |
453 @end table | |
454 | |
455 @kindex C-o | |
456 @kindex C-x C-o | |
457 @cindex blank lines | |
458 @findex open-line | |
459 @findex delete-blank-lines | |
460 When you want to insert a new line of text before an existing line, you | |
461 can do it by typing the new line of text, followed by @key{RET}. | |
462 However, it may be easier to see what you are doing if you first make a | |
463 blank line and then insert the desired text into it. This is easy to do | |
464 using the key @kbd{C-o} (@code{open-line}), which inserts a newline | |
465 after point but leaves point in front of the newline. After @kbd{C-o}, | |
466 type the text for the new line. @kbd{C-o F O O} has the same effect as | |
467 @w{@kbd{F O O @key{RET}}}, except for the final location of point. | |
468 | |
469 You can make several blank lines by typing @kbd{C-o} several times, or | |
470 by giving it a numeric argument to tell it how many blank lines to make. | |
471 @xref{Arguments}, for how. If you have a fill prefix, then @kbd{C-o} | |
472 command inserts the fill prefix on the new line, when you use it at the | |
473 beginning of a line. @xref{Fill Prefix}. | |
474 | |
475 The easy way to get rid of extra blank lines is with the command | |
476 @kbd{C-x C-o} (@code{delete-blank-lines}). @kbd{C-x C-o} in a run of | |
477 several blank lines deletes all but one of them. @kbd{C-x C-o} on a | |
478 solitary blank line deletes that blank line. When point is on a | |
479 nonblank line, @kbd{C-x C-o} deletes any blank lines following that | |
480 nonblank line. | |
481 | |
482 @node Continuation Lines | |
483 @section Continuation Lines | |
484 | |
485 @cindex continuation line | |
486 @cindex wrapping | |
487 @cindex line wrapping | |
488 If you add too many characters to one line without breaking it with | |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
489 @key{RET}, the line grows to occupy two (or more) lines on the screen. |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
490 On graphical displays, Emacs indicates line wrapping with small bent |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
491 arrows in the fringes to the left and right of the window. On |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
492 text-only terminals, Emacs displays a @samp{\} character at the right |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
493 margin of a screen line if it is not the last in its text line. This |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
494 @samp{\} character says that the following screen line is not really a |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
495 distinct line in the text, just a @dfn{continuation} of a line too |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
496 long to fit the screen. Continuation is also called @dfn{line |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
497 wrapping}. |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
498 |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
499 When line wrapping occurs before a character that is wider than one |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
500 column, some columns at the end of the previous screen line may be |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
501 ``empty.'' In this case, Emacs displays additional @samp{\} |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
502 characters in the ``empty'' columns, just before the @samp{\} |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
503 character that indicates continuation. |
25829 | 504 |
505 Sometimes it is nice to have Emacs insert newlines automatically when | |
506 a line gets too long. Continuation on the screen does not do that. Use | |
507 Auto Fill mode (@pxref{Filling}) if that's what you want. | |
508 | |
509 @vindex truncate-lines | |
510 @cindex truncation | |
511 As an alternative to continuation, Emacs can display long lines by | |
35206 | 512 @dfn{truncation}. This means that all the characters that do not fit |
513 in the width of the screen or window do not appear at all. They | |
514 remain in the buffer, temporarily invisible. On terminals, @samp{$} | |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
515 in the last column informs you that the line has been truncated on the |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
516 display. On window systems, a small straight arrow in the fringe to |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
517 the right of the window indicates a truncated line. |
25829 | 518 |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
519 @findex toggle-truncate-lines |
25829 | 520 Truncation instead of continuation happens whenever horizontal |
521 scrolling is in use, and optionally in all side-by-side windows | |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
522 (@pxref{Windows}). You can enable or disable truncation for a |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
523 particular buffer with the command @kbd{M-x toggle-truncate-lines}. |
31952
9ab15b2742ba
(Continuation Lines): Add description of
Gerd Moellmann <gerd@gnu.org>
parents:
27220
diff
changeset
|
524 |
36209
e80f51792a09
Fix xref to Display Custom.
Richard M. Stallman <rms@gnu.org>
parents:
36140
diff
changeset
|
525 @xref{Display Custom}, for additional variables that affect how text is |
25829 | 526 displayed. |
527 | |
528 @node Position Info | |
529 @section Cursor Position Information | |
530 | |
531 Here are commands to get information about the size and position of | |
532 parts of the buffer, and to count lines. | |
533 | |
534 @table @kbd | |
535 @item M-x what-page | |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
536 Display the page number of point, and the line number within the page. |
25829 | 537 @item M-x what-line |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
538 Display the line number of point in the buffer. |
25829 | 539 @item M-x line-number-mode |
27220
dddb1bca9704
Reference column-number-mode, hl-line-mode, blink-cursor-mode.
Dave Love <fx@gnu.org>
parents:
25829
diff
changeset
|
540 @itemx M-x column-number-mode |
dddb1bca9704
Reference column-number-mode, hl-line-mode, blink-cursor-mode.
Dave Love <fx@gnu.org>
parents:
25829
diff
changeset
|
541 Toggle automatic display of current line number or column number. |
dddb1bca9704
Reference column-number-mode, hl-line-mode, blink-cursor-mode.
Dave Love <fx@gnu.org>
parents:
25829
diff
changeset
|
542 @xref{Optional Mode Line}. |
25829 | 543 @item M-= |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
544 Display the number of lines in the current region (@code{count-lines-region}). |
25829 | 545 @xref{Mark}, for information about the region. |
546 @item C-x = | |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
547 Display the character code of character after point, character position of |
25829 | 548 point, and column of point (@code{what-cursor-position}). |
27220
dddb1bca9704
Reference column-number-mode, hl-line-mode, blink-cursor-mode.
Dave Love <fx@gnu.org>
parents:
25829
diff
changeset
|
549 @item M-x hl-line-mode |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
550 Enable or disable highlighting of the current line. |
25829 | 551 @end table |
552 | |
553 @findex what-page | |
554 @findex what-line | |
555 @cindex line number commands | |
556 @cindex location of point | |
557 @cindex cursor location | |
558 @cindex point location | |
559 There are two commands for working with line numbers. @kbd{M-x | |
560 what-line} computes the current line number and displays it in the echo | |
561 area. To go to a given line by number, use @kbd{M-x goto-line}; it | |
562 prompts you for the number. These line numbers count from one at the | |
563 beginning of the buffer. | |
564 | |
565 You can also see the current line number in the mode line; @xref{Mode | |
566 Line}. If you narrow the buffer, then the line number in the mode line | |
567 is relative to the accessible portion (@pxref{Narrowing}). By contrast, | |
568 @code{what-line} shows both the line number relative to the narrowed | |
569 region and the line number relative to the whole buffer. | |
570 | |
571 By contrast, @kbd{M-x what-page} counts pages from the beginning of | |
572 the file, and counts lines within the page, printing both numbers. | |
573 @xref{Pages}. | |
574 | |
575 @kindex M-= | |
576 @findex count-lines-region | |
577 While on this subject, we might as well mention @kbd{M-=} (@code{count-lines-region}), | |
578 which prints the number of lines in the region (@pxref{Mark}). | |
579 @xref{Pages}, for the command @kbd{C-x l} which counts the lines in the | |
580 current page. | |
581 | |
582 @kindex C-x = | |
583 @findex what-cursor-position | |
584 The command @kbd{C-x =} (@code{what-cursor-position}) can be used to find out | |
585 the column that the cursor is in, and other miscellaneous information about | |
586 point. It prints a line in the echo area that looks like this: | |
587 | |
588 @smallexample | |
589 Char: c (0143, 99, 0x63) point=21044 of 26883(78%) column 53 | |
590 @end smallexample | |
591 | |
592 @noindent | |
593 (In fact, this is the output produced when point is before the | |
594 @samp{column} in the example.) | |
595 | |
596 The four values after @samp{Char:} describe the character that follows | |
597 point, first by showing it and then by giving its character code in | |
598 octal, decimal and hex. For a non-ASCII multibyte character, these are | |
599 followed by @samp{ext} and the character's representation, in hex, in | |
600 the buffer's coding system, if that coding system encodes the character | |
601 safely and with a single byte (@pxref{Coding Systems}). If the | |
602 character's encoding is longer than one byte, Emacs shows @samp{ext ...}. | |
603 | |
604 @samp{point=} is followed by the position of point expressed as a character | |
605 count. The front of the buffer counts as position 1, one character later | |
606 as 2, and so on. The next, larger, number is the total number of characters | |
607 in the buffer. Afterward in parentheses comes the position expressed as a | |
608 percentage of the total size. | |
609 | |
610 @samp{column} is followed by the horizontal position of point, in | |
611 columns from the left edge of the window. | |
612 | |
613 If the buffer has been narrowed, making some of the text at the | |
614 beginning and the end temporarily inaccessible, @kbd{C-x =} prints | |
615 additional text describing the currently accessible range. For example, it | |
616 might display this: | |
617 | |
618 @smallexample | |
619 Char: C (0103, 67, 0x43) point=252 of 889(28%) <231 - 599> column 0 | |
620 @end smallexample | |
621 | |
622 @noindent | |
623 where the two extra numbers give the smallest and largest character | |
624 position that point is allowed to assume. The characters between those | |
625 two positions are the accessible ones. @xref{Narrowing}. | |
626 | |
627 If point is at the end of the buffer (or the end of the accessible | |
628 part), the @w{@kbd{C-x =}} output does not describe a character after | |
629 point. The output might look like this: | |
630 | |
631 @smallexample | |
632 point=26957 of 26956(100%) column 0 | |
633 @end smallexample | |
634 | |
635 @w{@kbd{C-u C-x =}} displays additional information about a character, | |
636 in place of the buffer coordinates and column: the character set name | |
637 and the codes that identify the character within that character set; | |
638 ASCII characters are identified as belonging to the @code{ASCII} | |
639 character set. In addition, the full character encoding, even if it | |
640 takes more than a single byte, is shown after @samp{ext}. Here's an | |
641 example for a Latin-1 character A with a grave accent in a buffer whose | |
642 coding system is iso-2022-7bit@footnote{On terminals that support | |
643 Latin-1 characters, the character shown after @samp{Char:} is displayed | |
644 as the actual glyph of A with grave accent.}: | |
645 | |
646 @example | |
647 Char: @`A (04300, 2240, 0x8c0, ext ESC , A @@) (latin-iso8859-1 64) | |
648 @end example | |
649 | |
650 @node Arguments | |
651 @section Numeric Arguments | |
652 @cindex numeric arguments | |
653 @cindex prefix arguments | |
36263
11db0318031d
Remove redundant index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
36209
diff
changeset
|
654 @cindex arguments to commands |
25829 | 655 |
656 In mathematics and computer usage, the word @dfn{argument} means | |
657 ``data provided to a function or operation.'' You can give any Emacs | |
658 command a @dfn{numeric argument} (also called a @dfn{prefix argument}). | |
659 Some commands interpret the argument as a repetition count. For | |
660 example, @kbd{C-f} with an argument of ten moves forward ten characters | |
661 instead of one. With these commands, no argument is equivalent to an | |
662 argument of one. Negative arguments tell most such commands to move or | |
663 act in the opposite direction. | |
664 | |
665 @kindex M-1 | |
666 @kindex M-@t{-} | |
667 @findex digit-argument | |
668 @findex negative-argument | |
669 If your terminal keyboard has a @key{META} key, the easiest way to | |
670 specify a numeric argument is to type digits and/or a minus sign while | |
671 holding down the @key{META} key. For example, | |
672 @example | |
673 M-5 C-n | |
674 @end example | |
675 @noindent | |
676 would move down five lines. The characters @kbd{Meta-1}, @kbd{Meta-2}, | |
677 and so on, as well as @kbd{Meta--}, do this because they are keys bound | |
678 to commands (@code{digit-argument} and @code{negative-argument}) that | |
679 are defined to contribute to an argument for the next command. Digits | |
680 and @kbd{-} modified with Control, or Control and Meta, also specify | |
681 numeric arguments. | |
682 | |
683 @kindex C-u | |
684 @findex universal-argument | |
685 Another way of specifying an argument is to use the @kbd{C-u} | |
686 (@code{universal-argument}) command followed by the digits of the | |
687 argument. With @kbd{C-u}, you can type the argument digits without | |
688 holding down modifier keys; @kbd{C-u} works on all terminals. To type a | |
689 negative argument, type a minus sign after @kbd{C-u}. Just a minus sign | |
690 without digits normally means @minus{}1. | |
691 | |
692 @kbd{C-u} followed by a character which is neither a digit nor a minus | |
693 sign has the special meaning of ``multiply by four.'' It multiplies the | |
694 argument for the next command by four. @kbd{C-u} twice multiplies it by | |
695 sixteen. Thus, @kbd{C-u C-u C-f} moves forward sixteen characters. This | |
696 is a good way to move forward ``fast,'' since it moves about 1/5 of a line | |
697 in the usual size screen. Other useful combinations are @kbd{C-u C-n}, | |
698 @kbd{C-u C-u C-n} (move down a good fraction of a screen), @kbd{C-u C-u | |
699 C-o} (make ``a lot'' of blank lines), and @kbd{C-u C-k} (kill four | |
700 lines).@refill | |
701 | |
702 Some commands care only about whether there is an argument, and not about | |
703 its value. For example, the command @kbd{M-q} (@code{fill-paragraph}) with | |
704 no argument fills text; with an argument, it justifies the text as well. | |
705 (@xref{Filling}, for more information on @kbd{M-q}.) Plain @kbd{C-u} is a | |
706 handy way of providing an argument for such commands. | |
707 | |
708 Some commands use the value of the argument as a repeat count, but do | |
709 something peculiar when there is no argument. For example, the command | |
710 @kbd{C-k} (@code{kill-line}) with argument @var{n} kills @var{n} lines, | |
711 including their terminating newlines. But @kbd{C-k} with no argument is | |
712 special: it kills the text up to the next newline, or, if point is right at | |
713 the end of the line, it kills the newline itself. Thus, two @kbd{C-k} | |
714 commands with no arguments can kill a nonblank line, just like @kbd{C-k} | |
715 with an argument of one. (@xref{Killing}, for more information on | |
716 @kbd{C-k}.)@refill | |
717 | |
718 A few commands treat a plain @kbd{C-u} differently from an ordinary | |
719 argument. A few others may treat an argument of just a minus sign | |
720 differently from an argument of @minus{}1. These unusual cases are | |
721 described when they come up; they are always for reasons of convenience | |
722 of use of the individual command. | |
723 | |
724 You can use a numeric argument to insert multiple copies of a | |
725 character. This is straightforward unless the character is a digit; for | |
726 example, @kbd{C-u 6 4 a} inserts 64 copies of the character @samp{a}. | |
727 But this does not work for inserting digits; @kbd{C-u 6 4 1} specifies | |
728 an argument of 641, rather than inserting anything. To separate the | |
729 digit to insert from the argument, type another @kbd{C-u}; for example, | |
730 @kbd{C-u 6 4 C-u 1} does insert 64 copies of the character @samp{1}. | |
731 | |
732 We use the term ``prefix argument'' as well as ``numeric argument'' to | |
733 emphasize that you type the argument before the command, and to | |
734 distinguish these arguments from minibuffer arguments that come after | |
735 the command. | |
736 | |
737 @node Repeating | |
738 @section Repeating a Command | |
739 @cindex repeating a command | |
740 | |
741 @kindex C-x z | |
742 @findex repeat | |
743 The command @kbd{C-x z} (@code{repeat}) provides another way to repeat | |
744 an Emacs command many times. This command repeats the previous Emacs | |
745 command, whatever that was. Repeating a command uses the same arguments | |
746 that were used before; it does not read new arguments each time. | |
747 | |
748 To repeat the command more than once, type additional @kbd{z}'s: each | |
749 @kbd{z} repeats the command one more time. Repetition ends when you | |
750 type a character other than @kbd{z}, or press a mouse button. | |
751 | |
752 For example, suppose you type @kbd{C-u 2 0 C-d} to delete 20 | |
753 characters. You can repeat that command (including its argument) three | |
754 additional times, to delete a total of 80 characters, by typing @kbd{C-x | |
755 z z z}. The first @kbd{C-x z} repeats the command once, and each | |
756 subsequent @kbd{z} repeats it once again. | |
757 |