Mercurial > emacs
annotate man/basic.texi @ 73925:a248fe2d281f
(Flogxor): Fix typo in docstring.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sun, 12 Nov 2006 04:50:22 +0000 |
parents | f142d3f60937 |
children | 3d45362f1d38 c358d0861b16 |
rev | line source |
---|---|
25829 | 1 @c This is part of the Emacs manual. |
64890
3723093a21fd
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
62483
diff
changeset
|
2 @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, |
68639
dc2d5a6655a3
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
68505
diff
changeset
|
3 @c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. |
25829 | 4 @c See file emacs.texi for copying conditions. |
5 @node Basic, Minibuffer, Exiting, Top | |
6 @chapter Basic Editing Commands | |
7 | |
8 @kindex C-h t | |
9 @findex help-with-tutorial | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
10 Here we explain the basics of how to enter text, make corrections, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
11 and save the text in a file. If this material is new to you, we |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
12 suggest you first run the Emacs learn-by-doing tutorial, by typing |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
13 @kbd{Control-h t} inside Emacs. (@code{help-with-tutorial}). |
25829 | 14 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
15 To clear and redisplay the screen, type @kbd{C-l} (@code{recenter}). |
25829 | 16 |
17 @menu | |
18 | |
19 * Inserting Text:: Inserting text by simply typing it. | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
20 * Moving Point:: Moving the cursor to the place where you want to |
25829 | 21 change something. |
22 * Erasing:: Deleting and killing text. | |
68505
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
23 * Basic Undo:: Undoing recent changes in the text. |
25829 | 24 * Files: Basic Files. Visiting, creating, and saving files. |
25 * Help: Basic Help. Asking what a character does. | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
26 * Blank Lines:: Making and deleting blank lines. |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
27 * Continuation Lines:: How Emacs displays lines too wide for the screen. |
25829 | 28 * Position Info:: What page, line, row, or column is point on? |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
29 * Arguments:: Numeric arguments for repeating a command N times. |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
30 * Repeating:: Repeating the previous command quickly. |
25829 | 31 @end menu |
32 | |
33 @node Inserting Text | |
34 @section Inserting Text | |
35 | |
36 @cindex insertion | |
37 @cindex graphic characters | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
38 Typing printing characters inserts them into the text you are |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
39 editing. It inserts them into the buffer at the cursor; more |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
40 precisely, it inserts them at @dfn{point}, but the cursor normally |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
41 shows where point is. @xref{Point}. |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
42 |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
43 Insertion moves the cursor forward, and the following text moves |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
44 forward with the cursor. If the text in the buffer is @samp{FOOBAR}, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
45 with the cursor before the @samp{B}, and you type @kbd{XX}, you get |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
46 @samp{FOOXXBAR}, with the cursor still before the @samp{B}. |
25829 | 47 |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
48 To @dfn{delete} text you have just inserted, use the large key |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
49 labeled @key{DEL}, @key{BACKSPACE} or @key{DELETE} which is a short |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
50 distance above the @key{RET} or @key{ENTER} key. Regardless of the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
51 label on that key, Emacs thinks of it as @key{DEL}, and that's what we |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
52 call it in this manual. @key{DEL} is the key you normally use outside |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
53 Emacs to erase the last character that you typed. |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
54 |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
55 The @key{DEL} key deletes the character @emph{before} the cursor. |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
56 As a consequence, the cursor and all the characters after it move |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
57 backwards. If you type a printing character and then type @key{DEL}, |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
58 they cancel out. |
25829 | 59 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
60 On most computers, Emacs sets up @key{DEL} automatically. In some |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
61 cases, especially with text-only terminals, Emacs may guess wrong. If |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
62 the key that ought to erase the last character doesn't do it in Emacs, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
63 see @ref{DEL Does Not Delete}. |
36789
f71fe44b07ea
Simplify the discussion of DEL. Refer to `DEL Gets Help' node
Richard M. Stallman <rms@gnu.org>
parents:
36724
diff
changeset
|
64 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
65 Most PC keyboards have both a @key{BACKSPACE} key a little ways |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
66 above @key{RET} or @key{ENTER}, and a @key{DELETE} key elsewhere. On |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
67 these keyboards, Emacs tries to set up @key{BACKSPACE} as @key{DEL}. |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
68 The @key{DELETE} key deletes ``forwards'' like @kbd{C-d} (see below), |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
69 which means it deletes the character underneath the cursor (after |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
70 point). |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
71 |
25829 | 72 @kindex RET |
73 @cindex newline | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
74 To end a line and start typing a new one, type @key{RET}. (This |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
75 key may be labeled @key{RETURN} or @key{ENTER}, but in Emacs we call |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
76 it @key{RET}.) This inserts a newline character in the buffer. If |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
77 point is at the end of the line, this creates a new blank line after |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
78 it. If point is in the middle of a line, the effect is to split that |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
79 line. Typing @key{DEL} when the cursor is at the beginning of a line |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
80 deletes the preceding newline character, thus joining the line with |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
81 the one before it. |
25829 | 82 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
83 Emacs can split lines automatically when they become too long, if |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
84 you turn on a special minor mode called @dfn{Auto Fill} mode. |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
85 @xref{Filling}, for Auto Fill mode and other methods of @dfn{filling} |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
86 text. |
25829 | 87 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
88 If you prefer printing characters to replace (overwrite) existing |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
89 text, rather than shove it to the right, you should enable Overwrite |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
90 mode, a minor mode. @xref{Minor Modes}. |
25829 | 91 |
92 @cindex quoting | |
93 @kindex C-q | |
94 @findex quoted-insert | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
95 Only printing characters and @key{SPC} insert themselves in Emacs. |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
96 Other characters act as editing commands and do not insert themselves. |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
97 These include control characters, and characters with codes above 200 |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
98 octal. If you need to insert one of these characters in the buffer, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
99 you must @dfn{quote} it by typing the character @kbd{Control-q} |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
100 (@code{quoted-insert}) first. (This character's name is normally |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
101 written @kbd{C-q} for short.) There are two ways to use |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
102 @kbd{C-q}: |
25829 | 103 |
104 @itemize @bullet | |
105 @item | |
106 @kbd{C-q} followed by any non-graphic character (even @kbd{C-g}) | |
107 inserts that character. | |
108 | |
109 @item | |
110 @kbd{C-q} followed by a sequence of octal digits inserts the character | |
111 with the specified octal character code. You can use any number of | |
37152 | 112 octal digits; any non-digit terminates the sequence. If the |
113 terminating character is @key{RET}, it serves only to terminate the | |
114 sequence. Any other non-digit terminates the sequence and then acts | |
115 as normal input---thus, @kbd{C-q 1 0 1 B} inserts @samp{AB}. | |
116 | |
117 The use of octal sequences is disabled in ordinary non-binary | |
118 Overwrite mode, to give you a convenient way to insert a digit instead | |
119 of overwriting with it. | |
25829 | 120 @end itemize |
121 | |
33552
82d0163f6fb7
Say "ISO 8859" instead of "ISO Latin", to cover non-Latin ISO-8859
Eli Zaretskii <eliz@gnu.org>
parents:
33518
diff
changeset
|
122 @cindex 8-bit character codes |
25829 | 123 @noindent |
33518 | 124 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
|
125 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
|
126 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
|
127 code to the corresponding Emacs character code. @xref{Enabling |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
128 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
|
129 use through your choice of language environment (@pxref{Language |
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
130 Environments}). |
25829 | 131 |
132 @vindex read-quoted-char-radix | |
133 To use decimal or hexadecimal instead of octal, set the variable | |
134 @code{read-quoted-char-radix} to 10 or 16. If the radix is greater than | |
135 10, some letters starting with @kbd{a} serve as part of a character | |
136 code, just like digits. | |
137 | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
138 A numeric argument tells @kbd{C-q} how many copies of the quoted |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
139 character to insert (@pxref{Arguments}). |
25829 | 140 |
141 @findex newline | |
142 @findex self-insert | |
143 Customization information: @key{DEL} in most modes runs the command | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
144 @code{delete-backward-char}; @key{RET} runs the command |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
145 @code{newline}, and self-inserting printing characters run the command |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
146 @code{self-insert}, which inserts whatever character you typed. Some |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
147 major modes rebind @key{DEL} to other commands. |
25829 | 148 |
149 @node Moving Point | |
150 @section Changing the Location of Point | |
151 | |
152 @cindex arrow keys | |
153 @cindex moving point | |
154 @cindex movement | |
155 @cindex cursor motion | |
156 @cindex moving the cursor | |
157 To do more than insert characters, you have to know how to move point | |
158 (@pxref{Point}). The simplest way to do this is with arrow keys, or by | |
159 clicking the left mouse button where you want to move to. | |
160 | |
161 There are also control and meta characters for cursor motion. Some | |
68452 | 162 are equivalent to the arrow keys (it is faster to use these control |
163 keys than move your hand over to the arrow keys). Others do more | |
164 sophisticated things. | |
25829 | 165 |
166 @kindex C-a | |
167 @kindex C-e | |
168 @kindex C-f | |
169 @kindex C-b | |
170 @kindex C-n | |
171 @kindex C-p | |
172 @kindex M-> | |
173 @kindex M-< | |
174 @kindex M-r | |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
175 @kindex LEFT |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
176 @kindex RIGHT |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
177 @kindex UP |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
178 @kindex DOWN |
62193
598f5ebd4f94
Various typo and grammar fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61100
diff
changeset
|
179 @findex move-beginning-of-line |
59140
13368da050f1
(Moving Point): C-e now runs move-end-of-line.
Richard M. Stallman <rms@gnu.org>
parents:
52979
diff
changeset
|
180 @findex move-end-of-line |
25829 | 181 @findex forward-char |
182 @findex backward-char | |
183 @findex next-line | |
184 @findex previous-line | |
185 @findex beginning-of-buffer | |
186 @findex end-of-buffer | |
187 @findex goto-char | |
188 @findex goto-line | |
189 @findex move-to-window-line | |
190 @table @kbd | |
191 @item C-a | |
62193
598f5ebd4f94
Various typo and grammar fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61100
diff
changeset
|
192 Move to the beginning of the line (@code{move-beginning-of-line}). |
25829 | 193 @item C-e |
59140
13368da050f1
(Moving Point): C-e now runs move-end-of-line.
Richard M. Stallman <rms@gnu.org>
parents:
52979
diff
changeset
|
194 Move to the end of the line (@code{move-end-of-line}). |
25829 | 195 @item C-f |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
196 Move forward one character (@code{forward-char}). The right-arrow key |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
197 does the same thing. |
25829 | 198 @item C-b |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
199 Move backward one character (@code{backward-char}). The left-arrow |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
200 key has the same effect. |
25829 | 201 @item M-f |
202 Move forward one word (@code{forward-word}). | |
203 @item M-b | |
204 Move backward one word (@code{backward-word}). | |
205 @item C-n | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
206 Move down one line vertically (@code{next-line}). This command |
25829 | 207 attempts to keep the horizontal position unchanged, so if you start in |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
208 the middle of one line, you move to the middle of the next. The |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
209 down-arrow key does the same thing. |
25829 | 210 @item C-p |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
211 Move up one line, vertically (@code{previous-line}). The up-arrow key |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
212 has the same effect. This command preserves position within the line, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
213 like @kbd{C-n}. |
25829 | 214 @item M-r |
215 Move point to left margin, vertically centered in the window | |
216 (@code{move-to-window-line}). Text does not move on the screen. | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
217 A numeric argument says which screen line to place point on, counting |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
218 downward from the top of the window (zero means the top line). A |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
219 negative argument counts lines up from the bottom (@minus{}1 means the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
220 bottom line). |
25829 | 221 @item M-< |
222 Move to the top of the buffer (@code{beginning-of-buffer}). With | |
223 numeric argument @var{n}, move to @var{n}/10 of the way from the top. | |
224 @xref{Arguments}, for more information on numeric arguments.@refill | |
225 @item M-> | |
226 Move to the end of the buffer (@code{end-of-buffer}). | |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
227 @item C-v |
59947
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
228 @itemx @key{PAGEDOWN} |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
229 @itemx @key{PRIOR} |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
230 Scroll the display one screen forward, and move point if necessary to |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
231 put it on the screen (@code{scroll-up}). This doesn't always move |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
232 point, but it is commonly used to do so. If your keyboard has a |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
233 @key{PAGEDOWN} or @key{PRIOR} key, it does the same thing. |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
234 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
235 Scrolling commands are described further in @ref{Scrolling}. |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
236 @item M-v |
59947
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
237 @itemx @key{PAGEUP} |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
238 @itemx @key{NEXT} |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
239 Scroll one screen backward, and move point if necessary to put it on |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
240 the screen (@code{scroll-down}). This doesn't always move point, but |
59947
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
241 it is commonly used to do so. If your keyboard has a @key{PAGEUP} or |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
242 @key{NEXT} key, it does the same thing. |
25829 | 243 @item M-x goto-char |
244 Read a number @var{n} and move point to buffer position @var{n}. | |
245 Position 1 is the beginning of the buffer. | |
60788
98fb3a23b966
(Moving Point): Add M-g M-g binding.
Richard M. Stallman <rms@gnu.org>
parents:
60102
diff
changeset
|
246 @item M-g M-g |
62338
9d25647627a1
(Moving Point): Mention `M-g g' binding for goto-line.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62207
diff
changeset
|
247 @itemx M-g g |
60788
98fb3a23b966
(Moving Point): Add M-g M-g binding.
Richard M. Stallman <rms@gnu.org>
parents:
60102
diff
changeset
|
248 @itemx M-x goto-line |
62483
8daca9735e20
(Moving Point): Mention default for `goto-line'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62338
diff
changeset
|
249 Read a number @var{n} and move point to the beginning of line number |
8daca9735e20
(Moving Point): Mention default for `goto-line'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62338
diff
changeset
|
250 @var{n}. Line 1 is the beginning of the buffer. If point is on or |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
251 just after a number in the buffer, and you type @key{RET} with the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
252 minibuffer empty, that number is used for @var{n}. |
25829 | 253 @item C-x C-n |
254 @findex set-goal-column | |
255 @kindex C-x C-n | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
256 Use the current column of point as the @dfn{semipermanent goal column} |
71114
542cd4440e5f
(Moving Point): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
71045
diff
changeset
|
257 for @kbd{C-n} and @kbd{C-p} (@code{set-goal-column}). When a |
542cd4440e5f
(Moving Point): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
71045
diff
changeset
|
258 semipermanent goal column is in effect, those commands always try to |
542cd4440e5f
(Moving Point): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
71045
diff
changeset
|
259 move to this column, or as close as possible to it, after moving |
542cd4440e5f
(Moving Point): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
71045
diff
changeset
|
260 vertically. The goal column remains in effect until canceled. |
25829 | 261 @item C-u C-x C-n |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
262 Cancel the goal column. Henceforth, @kbd{C-n} and @kbd{C-p} try to |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
263 preserve the horizontal position, as usual. |
25829 | 264 @end table |
265 | |
266 @vindex track-eol | |
267 If you set the variable @code{track-eol} to a non-@code{nil} value, | |
38172 | 268 then @kbd{C-n} and @kbd{C-p}, when starting at the end of the line, move |
25829 | 269 to the end of another line. Normally, @code{track-eol} is @code{nil}. |
270 @xref{Variables}, for how to set variables such as @code{track-eol}. | |
271 | |
272 @vindex next-line-add-newlines | |
62193
598f5ebd4f94
Various typo and grammar fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61100
diff
changeset
|
273 @kbd{C-n} normally stops at the end of the buffer when you use it on |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
274 the last line of the buffer. However, if you set the variable |
59947
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
275 @code{next-line-add-newlines} to a non-@code{nil} value, @kbd{C-n} on |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
276 the last line of a buffer creates an additional line at the end and |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
277 moves down into it. |
25829 | 278 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46040
diff
changeset
|
279 @node Erasing |
25829 | 280 @section Erasing Text |
281 | |
282 @table @kbd | |
283 @item @key{DEL} | |
284 Delete the character before point (@code{delete-backward-char}). | |
285 @item C-d | |
286 Delete the character after point (@code{delete-char}). | |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
287 @item @key{DELETE} |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
288 @itemx @key{BACKSPACE} |
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
289 One of these keys, whichever is the large key above the @key{RET} or |
68452 | 290 @key{ENTER} key, deletes the character before point---it is @key{DEL}. |
291 If @key{BACKSPACE} is @key{DEL}, and your keyboard also has @key{DELETE}, | |
36724
c3461a4e8d2e
Clarify BACKSPACE vs DELETE. Mention delete-key-deletes-forward-mode.
Richard M. Stallman <rms@gnu.org>
parents:
36654
diff
changeset
|
292 then @key{DELETE} deletes forwards, like @kbd{C-d}. |
25829 | 293 @item C-k |
294 Kill to the end of the line (@code{kill-line}). | |
295 @item M-d | |
296 Kill forward to the end of the next word (@code{kill-word}). | |
297 @item M-@key{DEL} | |
298 Kill back to the beginning of the previous word | |
299 (@code{backward-kill-word}). | |
300 @end table | |
301 | |
302 @cindex killing characters and lines | |
303 @cindex deleting characters and lines | |
304 @cindex erasing characters and lines | |
305 You already know about the @key{DEL} key which deletes the character | |
306 before point (that is, before the cursor). Another key, @kbd{Control-d} | |
307 (@kbd{C-d} for short), deletes the character after point (that is, the | |
308 character that the cursor is on). This shifts the rest of the text on | |
309 the line to the left. If you type @kbd{C-d} at the end of a line, it | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
310 joins that line with the following line. |
25829 | 311 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
312 To erase a larger amount of text, use the @kbd{C-k} key, which |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
313 erases (kills) a line at a time. If you type @kbd{C-k} at the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
314 beginning or middle of a line, it kills all the text up to the end of |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
315 the line. If you type @kbd{C-k} at the end of a line, it joins that |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
316 line with the following line. |
25829 | 317 |
318 @xref{Killing}, for more flexible ways of killing text. | |
319 | |
68505
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
320 @node Basic Undo |
25829 | 321 @section Undoing Changes |
322 | |
68505
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
323 Emacs records a list of changes made in the buffer text, so you can |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
324 you can undo recent changes, as far as the records go. |
68505
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
325 Usually each editing command makes a separate entry in the undo |
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
326 records, but sometimes an entry covers just part of a command, and |
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
327 very simple commands may be grouped. |
25829 | 328 |
329 @table @kbd | |
330 @item C-x u | |
68505
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
331 Undo one entry of the undo records---usually, one command worth |
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
332 (@code{undo}). |
25829 | 333 @item C-_ |
59947
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
334 @itemx C-/ |
25829 | 335 The same. |
336 @end table | |
337 | |
59947
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
338 The command @kbd{C-x u} (or @kbd{C-_} or @kbd{C-/}) is how you undo. |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
339 Normally this command undoes the last change, and moves point back to |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
340 where it was before the change. |
25829 | 341 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
342 If you repeat @kbd{C-x u} (or its aliases), each repetition undoes |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
343 another, earlier change, back to the limit of the undo information |
68505
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
344 available. If all recorded changes have already been undone, the undo |
d2c4afd6b173
(Basic Undo): Renamed from Undo. Most of text moved to new Undo node.
Richard M. Stallman <rms@gnu.org>
parents:
68464
diff
changeset
|
345 command displays an error message and does nothing. |
68452 | 346 |
347 The undo command applies only to changes in the buffer; you can't | |
348 use it to undo mere cursor motion. However, some cursor motion | |
349 commands set the mark, so if you use these commands from time to time, | |
350 you can move back to the neighborhoods you have moved through by | |
351 popping the mark ring (@pxref{Mark Ring}). | |
25829 | 352 |
353 @node Basic Files | |
354 @section Files | |
355 | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
356 Text that you insert in an Emacs buffer lasts only as long as the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
357 Emacs session. To keep any text permanently you must put it in a |
25829 | 358 @dfn{file}. Files are named units of text which are stored by the |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
359 operating system for you to retrieve later by name. To use the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
360 contents of a file in any way, you must specify the file name. That |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
361 includes editing the file with Emacs. |
25829 | 362 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
363 Suppose there is a file named @file{test.emacs} in your home |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
364 directory. To begin editing this file in Emacs, type |
25829 | 365 |
366 @example | |
68452 | 367 C-x C-f test.emacs @key{RET} |
25829 | 368 @end example |
369 | |
370 @noindent | |
371 Here the file name is given as an @dfn{argument} to the command @kbd{C-x | |
372 C-f} (@code{find-file}). That command uses the @dfn{minibuffer} to | |
373 read the argument, and you type @key{RET} to terminate the argument | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
374 (@pxref{Minibuffer}). |
25829 | 375 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
376 Emacs obeys this command by @dfn{visiting} the file: it creates a |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
377 buffer, it copies the contents of the file into the buffer, and then |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
378 displays the buffer for editing. If you alter the text, you can |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
379 @dfn{save} the new text in the file by typing @kbd{C-x C-s} |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
380 (@code{save-buffer}). This copies the altered buffer contents back |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
381 into the file @file{test.emacs}, making them permanent. Until you |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
382 save, the changed text exists only inside Emacs, and the file |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
383 @file{test.emacs} is unaltered. |
25829 | 384 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
385 To create a file, just visit it with @kbd{C-x C-f} as if it already |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
386 existed. This creates an empty buffer, in which you can insert the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
387 text you want to put in the file. Emacs actually creates the file the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
388 first time you save this buffer with @kbd{C-x C-s}. |
25829 | 389 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
390 To learn more about using files in Emacs, see @ref{Files}. |
25829 | 391 |
392 @node Basic Help | |
393 @section Help | |
394 | |
395 @cindex getting help with keys | |
396 If you forget what a key does, you can find out with the Help | |
397 character, which is @kbd{C-h} (or @key{F1}, which is an alias for | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
398 @kbd{C-h}). Type @kbd{C-h k} followed by the key of interest; for |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
399 example, @kbd{C-h k C-n} tells you what @kbd{C-n} does. @kbd{C-h} is |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
400 a prefix key; @kbd{C-h k} is just one of its subcommands (the command |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
401 @code{describe-key}). The other subcommands of @kbd{C-h} provide |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
402 different kinds of help. Type @kbd{C-h} twice to get a description of |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
403 all the help facilities. @xref{Help}. |
25829 | 404 |
405 @node Blank Lines | |
406 @section Blank Lines | |
407 | |
408 @cindex inserting blank lines | |
409 @cindex deleting blank lines | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
410 Here are special commands and techniques for inserting and deleting |
25829 | 411 blank lines. |
412 | |
413 @table @kbd | |
414 @item C-o | |
415 Insert one or more blank lines after the cursor (@code{open-line}). | |
416 @item C-x C-o | |
417 Delete all but one of many consecutive blank lines | |
418 (@code{delete-blank-lines}). | |
419 @end table | |
420 | |
421 @kindex C-o | |
422 @kindex C-x C-o | |
423 @cindex blank lines | |
424 @findex open-line | |
425 @findex delete-blank-lines | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
426 To insert a new line of text before an existing line, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
427 type the new line of text, followed by @key{RET}. |
25829 | 428 However, it may be easier to see what you are doing if you first make a |
429 blank line and then insert the desired text into it. This is easy to do | |
430 using the key @kbd{C-o} (@code{open-line}), which inserts a newline | |
431 after point but leaves point in front of the newline. After @kbd{C-o}, | |
432 type the text for the new line. @kbd{C-o F O O} has the same effect as | |
433 @w{@kbd{F O O @key{RET}}}, except for the final location of point. | |
434 | |
435 You can make several blank lines by typing @kbd{C-o} several times, or | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
436 by giving it a numeric argument specifying how many blank lines to make. |
62193
598f5ebd4f94
Various typo and grammar fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61100
diff
changeset
|
437 @xref{Arguments}, for how. If you have a fill prefix, the @kbd{C-o} |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
438 command inserts the fill prefix on the new line, if typed at the |
25829 | 439 beginning of a line. @xref{Fill Prefix}. |
440 | |
441 The easy way to get rid of extra blank lines is with the command | |
442 @kbd{C-x C-o} (@code{delete-blank-lines}). @kbd{C-x C-o} in a run of | |
443 several blank lines deletes all but one of them. @kbd{C-x C-o} on a | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
444 lone blank line deletes that one. When point is on a nonblank line, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
445 @kbd{C-x C-o} deletes all following blank lines (if any). |
25829 | 446 |
447 @node Continuation Lines | |
448 @section Continuation Lines | |
449 | |
450 @cindex continuation line | |
451 @cindex wrapping | |
452 @cindex line wrapping | |
42902
f83cc0d82951
(Continuation Lines): Add index entries for the fringe usage.
Eli Zaretskii <eliz@gnu.org>
parents:
42364
diff
changeset
|
453 @cindex fringes, and continuation lines |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
454 When a text line is too long to fit in one screen line, Emacs |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
455 displays it on two or more screen lines. This is called |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
456 @dfn{continuation} or @dfn{line wrapping}. On graphical displays, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
457 Emacs indicates line wrapping with small bent arrows in the left and |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
458 right window fringes. On text-only terminals, Emacs displays a |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
459 @samp{\} character at the right margin of a screen line if it is not |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
460 the last in its text line. This @samp{\} character says that the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
461 following screen line is not really a new text line. |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
462 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
463 When line wrapping occurs just before a character that is wider than one |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
464 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
|
465 ``empty.'' In this case, Emacs displays additional @samp{\} |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
466 characters in the ``empty'' columns before the @samp{\} |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
467 character that indicates continuation. |
25829 | 468 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
469 Continued lines can be difficult to read, since lines can break in |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
470 the middle of a word. If you prefer, you can make Emacs insert a |
68464
79464a6167f5
* basic.texi (Continuation Lines, Inserting Text): Mention
Chong Yidong <cyd@stupidchicken.com>
parents:
68452
diff
changeset
|
471 newline automatically when a line gets too long, by using Auto Fill |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
472 mode. Or enable Long Lines mode, which ensures that wrapping only |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
473 occurs between words. @xref{Filling}. |
25829 | 474 |
475 @cindex truncation | |
42902
f83cc0d82951
(Continuation Lines): Add index entries for the fringe usage.
Eli Zaretskii <eliz@gnu.org>
parents:
42364
diff
changeset
|
476 @cindex line truncation, and fringes |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
477 Emacs can optionally @dfn{truncate} long lines---this means |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
478 displaying just one screen line worth, and the rest of the long line |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
479 does not appear at all. @samp{$} in the last column or a small |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
480 straight arrow in the window's right fringe indicates a truncated |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
481 line. |
25829 | 482 |
72559
f142d3f60937
(Continuation Lines): Update xref.
Richard M. Stallman <rms@gnu.org>
parents:
72101
diff
changeset
|
483 @xref{Line Truncation}, for more about line truncation, |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
484 and other variables that control how text is displayed. |
25829 | 485 |
486 @node Position Info | |
487 @section Cursor Position Information | |
488 | |
489 Here are commands to get information about the size and position of | |
490 parts of the buffer, and to count lines. | |
491 | |
492 @table @kbd | |
493 @item M-x what-page | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
494 Display the page number of point, and the line number within that page. |
25829 | 495 @item M-x what-line |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
496 Display the line number of point in the whole buffer. |
25829 | 497 @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
|
498 @itemx M-x column-number-mode |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
499 Toggle automatic display of the current line number or column number. |
27220
dddb1bca9704
Reference column-number-mode, hl-line-mode, blink-cursor-mode.
Dave Love <fx@gnu.org>
parents:
25829
diff
changeset
|
500 @xref{Optional Mode Line}. |
25829 | 501 @item M-= |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
502 Display the number of lines in the current region (@code{count-lines-region}). |
25829 | 503 @xref{Mark}, for information about the region. |
504 @item C-x = | |
36140
af4e219e9947
Miscellaneous clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
35923
diff
changeset
|
505 Display the character code of character after point, character position of |
25829 | 506 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
|
507 @item M-x hl-line-mode |
38660
65fd4c8a6447
(Position Info): Add a cross-reference to where hl-line-mode is described.
Eli Zaretskii <eliz@gnu.org>
parents:
38541
diff
changeset
|
508 Enable or disable highlighting of the current line. @xref{Cursor |
65fd4c8a6447
(Position Info): Add a cross-reference to where hl-line-mode is described.
Eli Zaretskii <eliz@gnu.org>
parents:
38541
diff
changeset
|
509 Display}. |
52462
b118cda42fa3
(Position Info): Mention `size-indication-mode'.
Lute Kamstra <lute@gnu.org>
parents:
52401
diff
changeset
|
510 @item M-x size-indication-mode |
b118cda42fa3
(Position Info): Mention `size-indication-mode'.
Lute Kamstra <lute@gnu.org>
parents:
52401
diff
changeset
|
511 Toggle automatic display of the size of the buffer. |
b118cda42fa3
(Position Info): Mention `size-indication-mode'.
Lute Kamstra <lute@gnu.org>
parents:
52401
diff
changeset
|
512 @xref{Optional Mode Line}. |
25829 | 513 @end table |
514 | |
515 @findex what-page | |
516 @findex what-line | |
517 @cindex line number commands | |
518 @cindex location of point | |
519 @cindex cursor location | |
520 @cindex point location | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
521 @kbd{M-x what-line} displays the current line number |
62338
9d25647627a1
(Moving Point): Mention `M-g g' binding for goto-line.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62207
diff
changeset
|
522 in the echo area. You can also see the current line number in the |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
523 mode line; see @ref{Mode Line}; but if you narrow the buffer, the |
62338
9d25647627a1
(Moving Point): Mention `M-g g' binding for goto-line.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62207
diff
changeset
|
524 line number in the mode line is relative to the accessible portion |
9d25647627a1
(Moving Point): Mention `M-g g' binding for goto-line.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62207
diff
changeset
|
525 (@pxref{Narrowing}). By contrast, @code{what-line} shows both the |
9d25647627a1
(Moving Point): Mention `M-g g' binding for goto-line.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62207
diff
changeset
|
526 line number relative to the narrowed region and the line number |
9d25647627a1
(Moving Point): Mention `M-g g' binding for goto-line.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62207
diff
changeset
|
527 relative to the whole buffer. |
25829 | 528 |
37152 | 529 @kbd{M-x what-page} counts pages from the beginning of the file, and |
38870
d44abb4e68b2
Don't use "print" for displaying a message.
Richard M. Stallman <rms@gnu.org>
parents:
38767
diff
changeset
|
530 counts lines within the page, showing both numbers in the echo area. |
d44abb4e68b2
Don't use "print" for displaying a message.
Richard M. Stallman <rms@gnu.org>
parents:
38767
diff
changeset
|
531 @xref{Pages}. |
25829 | 532 |
533 @kindex M-= | |
534 @findex count-lines-region | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
535 Use @kbd{M-=} (@code{count-lines-region}) to displays the number of |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
536 lines in the region (@pxref{Mark}). @xref{Pages}, for the command |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
537 @kbd{C-x l} which counts the lines in the current page. |
25829 | 538 |
539 @kindex C-x = | |
540 @findex what-cursor-position | |
46040
3c219fd68a91
Update info on C-u C-x =.
Richard M. Stallman <rms@gnu.org>
parents:
45721
diff
changeset
|
541 The command @kbd{C-x =} (@code{what-cursor-position}) shows what |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
542 cursor's column position, and other information about point and the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
543 character after it. It displays a line in the echo area that looks |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
544 like this: |
25829 | 545 |
546 @smallexample | |
67040
4c99ea8adc42
(Position Info): Update examples of the output.
Juri Linkov <juri@jurta.org>
parents:
66061
diff
changeset
|
547 Char: c (99, #o143, #x63) point=28062 of 36168 (78%) column=53 |
25829 | 548 @end smallexample |
549 | |
550 The four values after @samp{Char:} describe the character that follows | |
551 point, first by showing it and then by giving its character code in | |
67040
4c99ea8adc42
(Position Info): Update examples of the output.
Juri Linkov <juri@jurta.org>
parents:
66061
diff
changeset
|
552 decimal, octal and hex. For a non-@acronym{ASCII} multibyte character, these are |
66051
ef089f655621
(Position Info): Describe the case that Emacs shows
Kenichi Handa <handa@m17n.org>
parents:
64890
diff
changeset
|
553 followed by @samp{file} and the character's representation, in hex, in |
25829 | 554 the buffer's coding system, if that coding system encodes the character |
555 safely and with a single byte (@pxref{Coding Systems}). If the | |
66051
ef089f655621
(Position Info): Describe the case that Emacs shows
Kenichi Handa <handa@m17n.org>
parents:
64890
diff
changeset
|
556 character's encoding is longer than one byte, Emacs shows @samp{file ...}. |
ef089f655621
(Position Info): Describe the case that Emacs shows
Kenichi Handa <handa@m17n.org>
parents:
64890
diff
changeset
|
557 |
ef089f655621
(Position Info): Describe the case that Emacs shows
Kenichi Handa <handa@m17n.org>
parents:
64890
diff
changeset
|
558 However, if the character displayed is in the range 0200 through |
66061
7fb814227358
(Position Info): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
66051
diff
changeset
|
559 0377 octal, it may actually stand for an invalid UTF-8 byte read from |
7fb814227358
(Position Info): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
66051
diff
changeset
|
560 a file. In Emacs, that byte is represented as a sequence of 8-bit |
7fb814227358
(Position Info): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
66051
diff
changeset
|
561 characters, but all of them together display as the original invalid |
7fb814227358
(Position Info): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
66051
diff
changeset
|
562 byte, in octal code. In this case, @kbd{C-x =} shows @samp{part of |
7fb814227358
(Position Info): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
66051
diff
changeset
|
563 display ...} instead of @samp{file}. |
25829 | 564 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
565 @samp{point=} is followed by the position of point expressed as a |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
566 character count. The start of the buffer is position 1, one character |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
567 later is position 2, and so on. The next, larger, number is the total |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
568 number of characters in the buffer. Afterward in parentheses comes |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
569 the position expressed as a percentage of the total size. |
25829 | 570 |
67040
4c99ea8adc42
(Position Info): Update examples of the output.
Juri Linkov <juri@jurta.org>
parents:
66061
diff
changeset
|
571 @samp{column=} is followed by the horizontal position of point, in |
25829 | 572 columns from the left edge of the window. |
573 | |
574 If the buffer has been narrowed, making some of the text at the | |
38870
d44abb4e68b2
Don't use "print" for displaying a message.
Richard M. Stallman <rms@gnu.org>
parents:
38767
diff
changeset
|
575 beginning and the end temporarily inaccessible, @kbd{C-x =} displays |
25829 | 576 additional text describing the currently accessible range. For example, it |
577 might display this: | |
578 | |
579 @smallexample | |
67040
4c99ea8adc42
(Position Info): Update examples of the output.
Juri Linkov <juri@jurta.org>
parents:
66061
diff
changeset
|
580 Char: C (67, #o103, #x43) point=252 of 889 (28%) <231-599> column=0 |
25829 | 581 @end smallexample |
582 | |
583 @noindent | |
584 where the two extra numbers give the smallest and largest character | |
585 position that point is allowed to assume. The characters between those | |
586 two positions are the accessible ones. @xref{Narrowing}. | |
587 | |
588 If point is at the end of the buffer (or the end of the accessible | |
589 part), the @w{@kbd{C-x =}} output does not describe a character after | |
590 point. The output might look like this: | |
591 | |
592 @smallexample | |
67040
4c99ea8adc42
(Position Info): Update examples of the output.
Juri Linkov <juri@jurta.org>
parents:
66061
diff
changeset
|
593 point=36169 of 36168 (EOB) column=0 |
25829 | 594 @end smallexample |
595 | |
44875
cc99f1248f49
(Position Info): Add text properties to the example. Add index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
43468
diff
changeset
|
596 @cindex character set of character at point |
45313
39adae4ad3df
(Position Info): Add an index entry for font at point.
Eli Zaretskii <eliz@gnu.org>
parents:
44875
diff
changeset
|
597 @cindex font of character at point |
44875
cc99f1248f49
(Position Info): Add text properties to the example. Add index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
43468
diff
changeset
|
598 @cindex text properties at point |
62193
598f5ebd4f94
Various typo and grammar fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61100
diff
changeset
|
599 @w{@kbd{C-u C-x =}} displays the following additional information about a |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
600 character. |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
601 |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
602 @itemize @bullet |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
603 @item |
61100
9d57acce20e8
(Position Info): Minor cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
61066
diff
changeset
|
604 The character set name, and the codes that identify the character |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
605 within that character set; @acronym{ASCII} characters are identified |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
606 as belonging to the @code{ascii} character set. |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
607 |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
608 @item |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
609 The character's syntax and categories. |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
610 |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
611 @item |
61100
9d57acce20e8
(Position Info): Minor cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
61066
diff
changeset
|
612 The character's encodings, both internally in the buffer, and externally |
9d57acce20e8
(Position Info): Minor cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
61066
diff
changeset
|
613 if you were to save the file. |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
614 |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
615 @item |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
616 What keys to type to input the character in the current input method |
61100
9d57acce20e8
(Position Info): Minor cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
61066
diff
changeset
|
617 (if it supports the character). |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
618 |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
619 @item |
68685
4bb94c09a47d
(Position Info): "Graphical displays", rather than window systems.
Richard M. Stallman <rms@gnu.org>
parents:
68639
diff
changeset
|
620 If you are running Emacs on a graphical display, the font name and |
4bb94c09a47d
(Position Info): "Graphical displays", rather than window systems.
Richard M. Stallman <rms@gnu.org>
parents:
68639
diff
changeset
|
621 glyph code for the character. If you are running Emacs on a text-only |
4bb94c09a47d
(Position Info): "Graphical displays", rather than window systems.
Richard M. Stallman <rms@gnu.org>
parents:
68639
diff
changeset
|
622 terminal, the code(s) sent to the terminal. |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
623 |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
624 @item |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
625 The character's text properties (@pxref{Text Properties,,, |
46040
3c219fd68a91
Update info on C-u C-x =.
Richard M. Stallman <rms@gnu.org>
parents:
45721
diff
changeset
|
626 elisp, the Emacs Lisp Reference Manual}), and any overlays containing it |
3c219fd68a91
Update info on C-u C-x =.
Richard M. Stallman <rms@gnu.org>
parents:
45721
diff
changeset
|
627 (@pxref{Overlays,,, elisp, the same manual}). |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
628 @end itemize |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
629 |
42364
c66f34e7d2cd
Update C-u C-x = output format.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
630 Here's an example showing the Latin-1 character A with grave accent, |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
631 in a buffer whose coding system is @code{iso-latin-1}, whose |
42364
c66f34e7d2cd
Update C-u C-x = output format.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
632 terminal coding system is @code{iso-latin-1} (so the terminal actually |
44875
cc99f1248f49
(Position Info): Add text properties to the example. Add index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
43468
diff
changeset
|
633 displays the character as @samp{@`A}), and which has font-lock-mode |
cc99f1248f49
(Position Info): Add text properties to the example. Add index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
43468
diff
changeset
|
634 (@pxref{Font Lock}) enabled: |
25829 | 635 |
37152 | 636 @smallexample |
67040
4c99ea8adc42
(Position Info): Update examples of the output.
Juri Linkov <juri@jurta.org>
parents:
66061
diff
changeset
|
637 character: @`A (2240, #o4300, #x8c0, U+00C0) |
67918
c14267a3323d
(Position Info): Update example.
Juri Linkov <juri@jurta.org>
parents:
67040
diff
changeset
|
638 charset: latin-iso8859-1 |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
639 (Right-Hand Part of Latin Alphabet 1@dots{} |
67918
c14267a3323d
(Position Info): Update example.
Juri Linkov <juri@jurta.org>
parents:
67040
diff
changeset
|
640 code point: #x40 |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
641 syntax: w which means: word |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
642 category: l:Latin |
67918
c14267a3323d
(Position Info): Update example.
Juri Linkov <juri@jurta.org>
parents:
67040
diff
changeset
|
643 to input: type "`A" with latin-1-prefix |
67040
4c99ea8adc42
(Position Info): Update examples of the output.
Juri Linkov <juri@jurta.org>
parents:
66061
diff
changeset
|
644 buffer code: #x81 #xC0 |
67918
c14267a3323d
(Position Info): Update example.
Juri Linkov <juri@jurta.org>
parents:
67040
diff
changeset
|
645 file code: #xC0 (encoded by coding system iso-latin-1) |
67040
4c99ea8adc42
(Position Info): Update examples of the output.
Juri Linkov <juri@jurta.org>
parents:
66061
diff
changeset
|
646 display: terminal code #xC0 |
44875
cc99f1248f49
(Position Info): Add text properties to the example. Add index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
43468
diff
changeset
|
647 |
61066
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
648 There are text properties here: |
bf195b369bc1
(Position Info): Update the description about the
Kenichi Handa <handa@m17n.org>
parents:
60788
diff
changeset
|
649 fontified t |
37152 | 650 @end smallexample |
25829 | 651 |
652 @node Arguments | |
653 @section Numeric Arguments | |
654 @cindex numeric arguments | |
655 @cindex prefix arguments | |
36263
11db0318031d
Remove redundant index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
36209
diff
changeset
|
656 @cindex arguments to commands |
25829 | 657 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
658 In mathematics and computer usage, @dfn{argument} means |
25829 | 659 ``data provided to a function or operation.'' You can give any Emacs |
660 command a @dfn{numeric argument} (also called a @dfn{prefix argument}). | |
661 Some commands interpret the argument as a repetition count. For | |
662 example, @kbd{C-f} with an argument of ten moves forward ten characters | |
663 instead of one. With these commands, no argument is equivalent to an | |
664 argument of one. Negative arguments tell most such commands to move or | |
665 act in the opposite direction. | |
666 | |
667 @kindex M-1 | |
668 @kindex M-@t{-} | |
669 @findex digit-argument | |
670 @findex negative-argument | |
59947
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
671 If your terminal keyboard has a @key{META} key (labeled @key{ALT} on |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
672 PC keyboards), the easiest way to specify a numeric argument is to |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
673 type digits and/or a minus sign while holding down the @key{META} key. |
801aa21b27e9
(Inserting Text): Cleanup wording.
Richard M. Stallman <rms@gnu.org>
parents:
59883
diff
changeset
|
674 For example, |
38729
7d62f0684e99
(Arguments): Say explicitly that M-- is -1. Fix spacing in an @example.
Eli Zaretskii <eliz@gnu.org>
parents:
38660
diff
changeset
|
675 |
25829 | 676 @example |
677 M-5 C-n | |
678 @end example | |
38729
7d62f0684e99
(Arguments): Say explicitly that M-- is -1. Fix spacing in an @example.
Eli Zaretskii <eliz@gnu.org>
parents:
38660
diff
changeset
|
679 |
25829 | 680 @noindent |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
681 moves down five lines. The characters @kbd{Meta-1}, @kbd{Meta-2}, |
25829 | 682 and so on, as well as @kbd{Meta--}, do this because they are keys bound |
683 to commands (@code{digit-argument} and @code{negative-argument}) that | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
684 are defined to set up an argument for the next command. |
38729
7d62f0684e99
(Arguments): Say explicitly that M-- is -1. Fix spacing in an @example.
Eli Zaretskii <eliz@gnu.org>
parents:
38660
diff
changeset
|
685 @kbd{Meta--} without digits normally means @minus{}1. Digits and |
7d62f0684e99
(Arguments): Say explicitly that M-- is -1. Fix spacing in an @example.
Eli Zaretskii <eliz@gnu.org>
parents:
38660
diff
changeset
|
686 @kbd{-} modified with Control, or Control and Meta, also specify numeric |
7d62f0684e99
(Arguments): Say explicitly that M-- is -1. Fix spacing in an @example.
Eli Zaretskii <eliz@gnu.org>
parents:
38660
diff
changeset
|
687 arguments. |
25829 | 688 |
689 @kindex C-u | |
690 @findex universal-argument | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
691 You can also specify a numeric argument by typing @kbd{C-u} |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
692 (@code{universal-argument}) followed by the digits. The advantage of |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
693 @kbd{C-u} is that you can type the digits without modifier keys; thus, |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
694 @kbd{C-u} works on all terminals. For a negative argument, type a |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
695 minus sign after @kbd{C-u}. A minus sign without digits normally |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
696 means @minus{}1. |
25829 | 697 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
698 @kbd{C-u} alone has the special meaning of |
68452 | 699 ``four times'': it multiplies the argument for the next command by |
700 four. @kbd{C-u C-u} multiplies it by sixteen. Thus, @kbd{C-u C-u | |
701 C-f} moves forward sixteen characters. This is a good way to move | |
702 forward ``fast,'' since it moves about 1/5 of a line in the usual size | |
703 screen. Other useful combinations are @kbd{C-u C-n}, @kbd{C-u C-u | |
704 C-n} (move down a good fraction of a screen), @kbd{C-u C-u C-o} (make | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
705 ``a lot'' of blank lines), and @kbd{C-u C-k} (kill four lines). |
25829 | 706 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
707 Some commands care whether there is an argument, but ignore its |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
708 value. For example, the command @kbd{M-q} (@code{fill-paragraph}) |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
709 fills text; with an argument, it justifies the text as well. |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
710 (@xref{Filling}, for more information on @kbd{M-q}.) Plain @kbd{C-u} |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
711 is a handy way of providing an argument for such commands. |
25829 | 712 |
713 Some commands use the value of the argument as a repeat count, but do | |
714 something peculiar when there is no argument. For example, the command | |
715 @kbd{C-k} (@code{kill-line}) with argument @var{n} kills @var{n} lines, | |
716 including their terminating newlines. But @kbd{C-k} with no argument is | |
717 special: it kills the text up to the next newline, or, if point is right at | |
718 the end of the line, it kills the newline itself. Thus, two @kbd{C-k} | |
719 commands with no arguments can kill a nonblank line, just like @kbd{C-k} | |
720 with an argument of one. (@xref{Killing}, for more information on | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
721 @kbd{C-k}.) |
25829 | 722 |
723 A few commands treat a plain @kbd{C-u} differently from an ordinary | |
724 argument. A few others may treat an argument of just a minus sign | |
725 differently from an argument of @minus{}1. These unusual cases are | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
726 described when they come up; they exist to make an individual command |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
727 more convenient, and they are documented in that command's |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
728 documentation string. |
25829 | 729 |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
730 You can use a numeric argument before a self-inserting character to |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
731 insert multiple copies of it. This is straightforward when the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
732 character is not a digit; for example, @kbd{C-u 6 4 a} inserts 64 |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
733 copies of the character @samp{a}. But this does not work for |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
734 inserting digits; @kbd{C-u 6 4 1} specifies an argument of 641. You |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
735 can separate the argument from the digit to insert with another |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
736 @kbd{C-u}; for example, @kbd{C-u 6 4 C-u 1} does insert 64 copies of |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
737 the character @samp{1}. |
25829 | 738 |
72101
c7e4f78b81a6
Move periods and commas inside quotes.
Richard M. Stallman <rms@gnu.org>
parents:
71114
diff
changeset
|
739 We use the term ``prefix argument'' as well as ``numeric argument,'' |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
740 to emphasize that you type these argument before the command, and to |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
741 distinguish them from minibuffer arguments that come after the |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
742 command. |
25829 | 743 |
744 @node Repeating | |
745 @section Repeating a Command | |
746 @cindex repeating a command | |
747 | |
38738 | 748 Many simple commands, such as those invoked with a single key or |
749 with @kbd{M-x @var{command-name} @key{RET}}, can be repeated by | |
750 invoking them with a numeric argument that serves as a repeat count | |
751 (@pxref{Arguments}). However, if the command you want to repeat | |
71045
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
752 prompts for input, or uses a numeric argument in another way, that |
ddc3087f4c41
Many simplifications and improvements in wording.
Richard M. Stallman <rms@gnu.org>
parents:
68685
diff
changeset
|
753 method won't work. |
38541
2540b694650b
(Repeating): Mention the numeric argument as another form of repetition,
Eli Zaretskii <eliz@gnu.org>
parents:
38172
diff
changeset
|
754 |
25829 | 755 @kindex C-x z |
756 @findex repeat | |
757 The command @kbd{C-x z} (@code{repeat}) provides another way to repeat | |
758 an Emacs command many times. This command repeats the previous Emacs | |
759 command, whatever that was. Repeating a command uses the same arguments | |
760 that were used before; it does not read new arguments each time. | |
761 | |
762 To repeat the command more than once, type additional @kbd{z}'s: each | |
763 @kbd{z} repeats the command one more time. Repetition ends when you | |
764 type a character other than @kbd{z}, or press a mouse button. | |
765 | |
766 For example, suppose you type @kbd{C-u 2 0 C-d} to delete 20 | |
767 characters. You can repeat that command (including its argument) three | |
768 additional times, to delete a total of 80 characters, by typing @kbd{C-x | |
769 z z z}. The first @kbd{C-x z} repeats the command once, and each | |
770 subsequent @kbd{z} repeats it once again. | |
771 | |
52401 | 772 @ignore |
773 arch-tag: cda8952a-c439-41c1-aecf-4bc0d6482956 | |
774 @end ignore |