Skip to content

Commit 0d8d8a4

Browse files
authored
docs: Punctuation on tutor (#3888)
1 parent 3a245fe commit 0d8d8a4

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

runtime/tutor

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ _________________________________________________________________
7070

7171
Type the d key to delete the character under the cursor.
7272

73-
1. Move the cursor to the line below marked -->.
73+
1. Move the cursor to the line marked '-->' below.
7474
2. Move the cursor to each extra character, and type d to
7575
delete it.
7676

@@ -92,7 +92,7 @@ _________________________________________________________________
9292

9393
Type the i key to enter Insert mode.
9494

95-
1. Move the cursor to the line below marked -->.
95+
1. Move the cursor to the line marked '-->' below.
9696
2. Move to a place in the line which is missing text and type
9797
i to enter Insert mode. Keys you type will now type text.
9898
3. Enter the missing text.
@@ -166,7 +166,7 @@ _________________________________________________________________
166166
I - Insert at the start of the line.
167167
A - Insert at the end of the line.
168168

169-
1. Move to anywhere in the line below marked -->.
169+
1. Move to anywhere in the line marked '-->' below.
170170
2. Type A (<SHIFT> + a), your cursor will move to the end of
171171
the line and you will be able to type.
172172
3. Type the text necessary to match the line below.
@@ -181,7 +181,7 @@ _________________________________________________________________
181181
Type o to add a newline and insert below the cursor.
182182
Type O to add a newline and insert above the cursor.
183183

184-
1. Move the cursor to the line below marked -->.
184+
1. Move the cursor to the line marked '-->' below.
185185
2. Type o to open a line below and type your answer.
186186

187187
--> What is the best editor?
@@ -228,7 +228,7 @@ _________________________________________________________________
228228
it deletes all selected text. Your cursor is like a
229229
single-character selection.
230230

231-
1. Move the cursor to the line below marked -->.
231+
1. Move the cursor to the line marked '-->' below.
232232
2. Move to the beginning of a word that needs to be deleted.
233233
3. Type w to select until the beginning of the next word.
234234
4. Type d to delete the selection.
@@ -271,7 +271,7 @@ _________________________________________________________________
271271
The change command deletes the current selection and enters
272272
Insert mode, so it is a very common shorthand for di.
273273

274-
1. Move the cursor to the line below marked -->.
274+
1. Move the cursor to the line marked '-->' below.
275275
2. Move to the start of an incorrect word and type w to
276276
select it.
277277
3. Type c to delete the word and enter Insert mode.
@@ -290,7 +290,7 @@ _________________________________________________________________
290290

291291
Type a number before a motion to repeat it that many times.
292292

293-
1. Move the cursor to the line below marked -->.
293+
1. Move the cursor to the line marked '-->' below.
294294
2. Type 2w to move 2 words forward.
295295
3. Type 3e to move to the end of the third word forward.
296296
4. Type 2b to move 2 words backwards
@@ -315,7 +315,7 @@ _________________________________________________________________
315315
In Select mode every movement will extend the selection, as
316316
opposed to replacing it.
317317

318-
1. Move the cursor to the line below marked -->.
318+
1. Move the cursor to the line marked '-->' below.
319319
2. Move to the F of FOO and type v2w to select the two words.
320320
3. Type d to remove the two words. Notice d returns you to
321321
Normal mode.
@@ -334,7 +334,7 @@ _________________________________________________________________
334334

335335
Type x to select a whole line. Type x again to select the next.
336336

337-
1. Move the cursor to the second line below marked -->.
337+
1. Move the cursor to the second line marked '-->' below.
338338
2. Type x to select the line, and d to delete it.
339339
3. Move to the fourth line.
340340
4. Type x twice or type 2x to select 2 lines, and d to delete.
@@ -359,7 +359,7 @@ _________________________________________________________________
359359
Sometimes, you want to deselect without having to move the
360360
cursor(s). This can be done using the ; key.
361361

362-
1. Move the cursor to the line below marked -->.
362+
1. Move the cursor to the line marked '-->' below.
363363
2. Use the motions you have learned to move around the line,
364364
and try using ; to deselect the text after it is selected
365365
by the motions.
@@ -400,7 +400,7 @@ _________________________________________________________________
400400

401401
Type u to undo. Type U to redo.
402402

403-
1. Move the cursor to the line below marked -->.
403+
1. Move the cursor to the line marked '-->' below.
404404
2. Move to the first error, and type d to delete it.
405405
3. Type u to undo your deletion.
406406
4. Fix all the errors on the line.
@@ -424,7 +424,7 @@ _________________________________________________________________
424424
Type p to paste the yanked selection after the cursor.
425425
Type P to paste the yanked text before the cursor.
426426

427-
1. Move the cursor to the line below marked -->.
427+
1. Move the cursor to the line marked '-->' below.
428428
Make sure your cursor is on the "b" of banana.
429429
2. Type w to select "banana" and y to yank it.
430430
3. Move to the space between "2" and "3" and type p to paste.
@@ -488,7 +488,7 @@ _________________________________________________________________
488488

489489
Type C to duplicate the cursor to the next suitable line.
490490

491-
1. Move the cursor to the first line below marked -->.
491+
1. Move the cursor to the first line marked '-->' below.
492492
2. Type C to duplicate the cursor to the next suitable line.
493493
Notice how it skips the line in the middle. Keys you type
494494
will now affect both cursors.
@@ -510,7 +510,7 @@ _________________________________________________________________
510510

511511
Type s to select matches in the selection.
512512

513-
1. Move the cursor to the line below marked -->.
513+
1. Move the cursor to the line marked '-->' below.
514514
2. Type x to select the line.
515515
3. Type s. A prompt will appear.
516516
4. Type 'apples' and type <ENTER>. Both occurrences of
@@ -533,7 +533,7 @@ _________________________________________________________________
533533
The select command selects regular expressions, not just exact
534534
matches, allowing you to target more complex patterns.
535535

536-
1. Move the cursor to the line below marked -->.
536+
1. Move the cursor to the line marked '-->' below.
537537
2. Select the line with x and then type s.
538538
3. Enter ' +' to select any amount of consecutive spaces >1.
539539
4. Type c and change the matches to single spaces.
@@ -554,7 +554,7 @@ _________________________________________________________________
554554

555555
Type & to align the contents of the selections.
556556

557-
1. Move the cursor to the first line below marked -->. Place
557+
1. Move the cursor to the first line marked '-->' below. Place
558558
the cursor on the whitespace just after the arrow.
559559
2. Type C four times or 4C.
560560
3. Type W to select the numbers and brackets.
@@ -622,7 +622,7 @@ _________________________________________________________________
622622
Type t<ch> to do the same, but not including (till) a character.
623623
Type uppercase F / T to do the same backwards.
624624

625-
1. Move the cursor to the line below marked -->. Place the
625+
1. Move the cursor to the line marked '-->' below. Place the
626626
cursor on the first dash.
627627
2. Type f[ to select to the square bracket.
628628
3. Type d to delete your selection.
@@ -633,7 +633,7 @@ _________________________________________________________________
633633
--> -----[Free this sentence of its brackets!]-----
634634
--> ------Free this sentence of its dashes!------
635635

636-
Note: Unlike Vim, Helix doesn't limit these commands to the
636+
Note: Unlike Vim, Helix doesn't limit these commands to the
637637
current line. It searches for the character in the file.
638638

639639
=================================================================
@@ -665,7 +665,7 @@ _________________________________________________________________
665665
Type . to repeat the last insert command.
666666
Type A-. to repeat the last f / t selection.
667667

668-
1. Move the cursor to the line below marked -->.
668+
1. Move the cursor to the line marked '-->' below.
669669
2. Make a change, insertion or appendage and repeat it with . .
670670
3. Try using A-. with f and t, to select multiple sentences for
671671
instance.
@@ -708,7 +708,7 @@ _________________________________________________________________
708708

709709
Type R to replace the selection with previously yanked text.
710710

711-
1. Move the cursor to the line below marked -->.
711+
1. Move the cursor to the line marked '-->' below.
712712
2. Type w to select "watermelons" and then y to yank it.
713713
3. Select "oranges" with w.
714714
4. Type R to replace "oranges" with "watermelons"
@@ -730,7 +730,7 @@ _________________________________________________________________
730730

731731
Type J to join together lines in selection.
732732

733-
1. Move the cursor to the line below marked -->.
733+
1. Move the cursor to the line marked '-->' below.
734734
2. Type x four times or 4x to select all four lines.
735735
3. Type J to join the lines together.
736736

@@ -752,7 +752,7 @@ lines.
752752

753753
Type > to indent a line and < to outdent it.
754754

755-
1. Move the cursor to the line below marked -->.
755+
1. Move the cursor to the line marked '-->' below.
756756
2. Move down to the second line and type > to indent it.
757757
3. Move to the third line and type < to outdent it.
758758

@@ -775,7 +775,7 @@ lines.
775775
Type C-a to increment the number under selection.
776776
Type C-x to decrement the number under selection.
777777

778-
1. Move the cursor to the third line below marked -->.
778+
1. Move the cursor to the third line marked '-->' below.
779779
2. Type C-a to increment the second point marked 2.
780780
3. Repeat for the point marked 3.
781781
4. Move to the last point and type C-x to decrement the 6.
@@ -823,7 +823,7 @@ lines.
823823

824824
Type "<ch> to select register <ch>.
825825

826-
1. Move the cursor to the line below marked -->.
826+
1. Move the cursor to the line marked '-->' below.
827827
2. Type w to select "watermelons" and yank with y.
828828
3. Type w to select "bananas".
829829
4. Change to register b with "b and yank with y.
@@ -844,7 +844,7 @@ lines.
844844
the bottom of your screen. Type Q again to stop recording.
845845
Type q to repeat the macro from register @ (the default).
846846

847-
1. Move the cursor to the first line below marked -->.
847+
1. Move the cursor to the first line marked '-->' below.
848848
Ensure your cursor is on the > of the arrow.
849849
2. Type Q to start recording.
850850
3. Edit the line to look like the bottom one.
@@ -889,7 +889,7 @@ lines.
889889
Type * to copy the primary selection into register /, setting
890890
the search term to the selection.
891891

892-
1. Move the cursor to the line below marked -->.
892+
1. Move the cursor to the line marked '-->' below.
893893
2. Select "horse" with e and type *.
894894
3. Use n and N to jump between the instances of "horse".
895895

@@ -908,7 +908,7 @@ lines.
908908
of moving the selection to the next match, it adds a new
909909
selection on each match.
910910

911-
1. Move the cursor to the line below marked -->.
911+
1. Move the cursor to the line marked '-->' below.
912912
2. Select the first "bat" and type * to set it to search.
913913
3. Type v to enter select mode.
914914
4. Type n to select the other "bat".
@@ -975,7 +975,7 @@ lines.
975975

976976
Type A-, to remove the primary selection.
977977

978-
1. Move the cursor to the line below marked -->.
978+
1. Move the cursor to the line marked '-->' below.
979979
2. Select both lines with xx or 2x.
980980
3. Type s to select, type "would" and enter.
981981
4. Use ( and ) to cycle the primary selection and remove the
@@ -996,7 +996,7 @@ lines.
996996
Type ` to set all selected letters to lowercase.
997997
Type Alt-` to set all selected letters to uppercase.
998998

999-
1. Move the cursor to the first line below marked -->.
999+
1. Move the cursor to the first line marked '-->' below.
10001000
2. Select each wrongly capitalised or lowercase letter
10011001
and type ~ over them.
10021002
3. Move to the second line marked -->.

0 commit comments

Comments
 (0)