comparison etc/TUTORIAL @ 49600:23a1cea22d13

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 14:56:31 +0000
parents afd7191c989c
children 695cf19ef79e d7ddb3e565de
comparison
equal deleted inserted replaced
49599:5ade352e8d1c 49600:23a1cea22d13
63 63
64 There are several ways you can do this. You can use the arrow keys, 64 There are several ways you can do this. You can use the arrow keys,
65 but it's more efficient to keep your hands in the standard position 65 but it's more efficient to keep your hands in the standard position
66 and use the commands C-p, C-b, C-f, and C-n. These characters 66 and use the commands C-p, C-b, C-f, and C-n. These characters
67 are equivalent to the four arrow keys, like this: 67 are equivalent to the four arrow keys, like this:
68 68
69 Previous line, C-p 69 Previous line, C-p
70 : 70 :
71 : 71 :
72 Backward, C-b .... Current cursor position .... Forward, C-f 72 Backward, C-b .... Current cursor position .... Forward, C-f
73 : 73 :
196 META key. We recommend learning the C-u method because it works on 196 META key. We recommend learning the C-u method because it works on
197 any terminal. The numeric argument is also called a "prefix argument", 197 any terminal. The numeric argument is also called a "prefix argument",
198 because you type the argument before the command it applies to. 198 because you type the argument before the command it applies to.
199 199
200 For instance, C-u 8 C-f moves forward eight characters. 200 For instance, C-u 8 C-f moves forward eight characters.
201 201
202 >> Try using C-n or C-p with a numeric argument, to move the cursor 202 >> Try using C-n or C-p with a numeric argument, to move the cursor
203 to a line near this one with just one command. 203 to a line near this one with just one command.
204 204
205 Most commands use the numeric argument as a repeat count, but some 205 Most commands use the numeric argument as a repeat count, but some
206 commands use it in some other way. Several commands (but none of 206 commands use it in some other way. Several commands (but none of
747 Right after you visit or save a file, that part of the mode line shows 747 Right after you visit or save a file, that part of the mode line shows
748 no stars, just dashes. 748 no stars, just dashes.
749 749
750 The part of the mode line inside the parentheses is to tell you what 750 The part of the mode line inside the parentheses is to tell you what
751 editing modes you are in. The default mode is Fundamental which is 751 editing modes you are in. The default mode is Fundamental which is
752 what you are using now. It is an example of a "major mode". 752 what you are using now. It is an example of a "major mode".
753 753
754 Emacs has many different major modes. Some of them are meant for 754 Emacs has many different major modes. Some of them are meant for
755 editing different languages and/or kinds of text, such as Lisp mode, 755 editing different languages and/or kinds of text, such as Lisp mode,
756 Text mode, etc. At any time one and only one major mode is active, 756 Text mode, etc. At any time one and only one major mode is active,
757 and its name can always be found in the mode line just where 757 and its name can always be found in the mode line just where