diff options
author | Bjorn Ove Hay Andersen | 2022-06-13 14:00:40 +0000 |
---|---|---|
committer | GitHub | 2022-06-13 14:00:40 +0000 |
commit | 3b2d4031f11b9c3ea676c49aa83e3fdf71353b17 (patch) | |
tree | 7840b867225c84aebc7afe4c1dd9f4a57736c1a3 | |
parent | a766b32ed197221aca7a9fec3af805b4d04a6f1d (diff) |
Clarified the text in chapter 3 of the tutor (#2735)
* Clarified the text in chapter 3 of the tutor (#2725)
* Adjusted section 3.1 to better show how C works
-rw-r--r-- | runtime/tutor.txt | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/runtime/tutor.txt b/runtime/tutor.txt index a31e73d9..f21f5aa7 100644 --- a/runtime/tutor.txt +++ b/runtime/tutor.txt @@ -336,21 +336,25 @@ _________________________________________________________________ = 3.1 MULTIPLE CURSORS = ================================================================= - Type C to duplicate the cursor to the next line. + Type C to duplicate the cursor to the next suitable line. 1. Move the cursor to the first line below marked -->. - 2. Type C to duplicate the cursor to the next line. Keys you - type will now affect both cursors. + 2. Type C to duplicate the cursor to the next suitable line. + Notice how it skips the line in the middle. Keys you type + will now affect both cursors. 3. Use Insert mode to correct the lines. The two cursors will fix both lines simultaneously. 4. Type , to remove the second cursor. --> Fix th two nes at same ime. + --> --> Fix th two nes at same ime. Fix these two lines at the same time. Note: Type alt-C to do the same above the cursor. + Note: This also works for selections, but it will pick the first + line that fits the entire selection at the same column. @@ -446,7 +450,7 @@ _________________________________________________________________ = CHAPTER 3 RECAP = ================================================================= - * Type C to copy the selection on the line below and Alt-C for + * Type C to copy the current selection to below and Alt-C for above. * Type s to select all instances of a regex pattern inside |