Mercurial > emacs
comparison etc/TUTORIAL @ 32393:0fe223923f61
Minor wording changes, suggested by Per Starback <starback@ling.uu.se>.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Wed, 11 Oct 2000 18:37:52 +0000 |
parents | bf863038e7a6 |
children | e4721c5ab8dd |
comparison
equal
deleted
inserted
replaced
32392:4d8ff72a1290 | 32393:0fe223923f61 |
---|---|
356 character, but let's not worry about that). C-k and M-k are like C-e | 356 character, but let's not worry about that). C-k and M-k are like C-e |
357 and M-e, sort of, in that lines are opposite sentences. | 357 and M-e, sort of, in that lines are opposite sentences. |
358 | 358 |
359 You can also kill any part of the buffer with one uniform method. | 359 You can also kill any part of the buffer with one uniform method. |
360 Move to one end of that part, and type C-@ or C-SPC (either one). | 360 Move to one end of that part, and type C-@ or C-SPC (either one). |
361 Move to the other end of that part, and type C-w. That kills | 361 (SPC is the Space bar.) Move to the other end of that part, and type |
362 all the text between the two positions. | 362 C-w. That kills all the text between the two positions. |
363 | 363 |
364 >> Move the cursor to the Y at the start of the previous paragraph. | 364 >> Move the cursor to the Y at the start of the previous paragraph. |
365 >> Type C-SPC. Emacs should display a message "Mark set" | 365 >> Type C-SPC. Emacs should display a message "Mark set" |
366 at the bottom of the screen. | 366 at the bottom of the screen. |
367 >> Move the cursor to the n in "end", on the second line of the | 367 >> Move the cursor to the n in "end", on the second line of the |
639 frequently, or commands which are used only in certain modes. An | 639 frequently, or commands which are used only in certain modes. An |
640 example is the command replace-string, which globally replaces one | 640 example is the command replace-string, which globally replaces one |
641 string with another. When you type M-x, Emacs prompts you at the | 641 string with another. When you type M-x, Emacs prompts you at the |
642 bottom of the screen with M-x and you should type the name of the | 642 bottom of the screen with M-x and you should type the name of the |
643 command; in this case, "replace-string". Just type "repl s<TAB>" and | 643 command; in this case, "replace-string". Just type "repl s<TAB>" and |
644 Emacs will complete the name. End the command name with <Return>. | 644 Emacs will complete the name. (<TAB> is the Tab key, usually found |
645 above the lCapsLock or Shift key near the left edge of the keyboard.) | |
646 End the command name with <Return>. | |
645 | 647 |
646 The replace-string command requires two arguments--the string to be | 648 The replace-string command requires two arguments--the string to be |
647 replaced, and the string to replace it with. You must end each | 649 replaced, and the string to replace it with. You must end each |
648 argument with <Return>. | 650 argument with <Return>. |
649 | 651 |
848 ------------------ | 850 ------------------ |
849 | 851 |
850 One of the nice features of Emacs is that you can display more than one | 852 One of the nice features of Emacs is that you can display more than one |
851 window on the screen at the same time. | 853 window on the screen at the same time. |
852 | 854 |
853 >> Move the cursor to this line and type C-u 0 C-l. | 855 >> Move the cursor to this line and type C-u 0 C-l (that's control-L, not |
856 control-1). | |
854 | 857 |
855 >> Now type C-x 2 which splits the screen into two windows. | 858 >> Now type C-x 2 which splits the screen into two windows. |
856 Both windows display this tutorial. The cursor stays in the top window. | 859 Both windows display this tutorial. The cursor stays in the top window. |
857 | 860 |
858 >> Type C-M-v to scroll the bottom window. | 861 >> Type C-M-v to scroll the bottom window. |