comparison runtime/tutor/tutor @ 14347:723487cd7876

Update runtime files. commit https://github.com/vim/vim/commit/b477af2260d9bc7ae7f743f0a14265d7ee12ee09 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 15 20:20:18 2018 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Sun, 15 Jul 2018 20:30:05 +0200
parents 4543777545a3
children 314694a2e74a
comparison
equal deleted inserted replaced
14346:1858ac1f1b9e 14347:723487cd7876
370 Lesson 3.1: THE PUT COMMAND 370 Lesson 3.1: THE PUT COMMAND
371 371
372 372
373 ** Type p to put previously deleted text after the cursor. ** 373 ** Type p to put previously deleted text after the cursor. **
374 374
375 1. Move the cursor to the first ---> line below. 375 1. Move the cursor to the first line below marked --->.
376 376
377 2. Type dd to delete the line and store it in a Vim register. 377 2. Type dd to delete the line and store it in a Vim register.
378 378
379 3. Move the cursor to the c) line, ABOVE where the deleted line should go. 379 3. Move the cursor to the c) line, ABOVE where the deleted line should go.
380 380
445 445
446 c [number] motion 446 c [number] motion
447 447
448 2. The motions are the same, such as w (word) and $ (end of line). 448 2. The motions are the same, such as w (word) and $ (end of line).
449 449
450 3. Move to the first line below marked --->. 450 3. Move the cursor to the first line below marked --->.
451 451
452 4. Move the cursor to the first error. 452 4. Move the cursor to the first error.
453 453
454 5. Type c$ and type the rest of the line like the second and press <ESC>. 454 5. Type c$ and type the rest of the line like the second and press <ESC>.
455 455
738 Lesson 6.2: THE APPEND COMMAND 738 Lesson 6.2: THE APPEND COMMAND
739 739
740 740
741 ** Type a to insert text AFTER the cursor. ** 741 ** Type a to insert text AFTER the cursor. **
742 742
743 1. Move the cursor to the start of the line below marked --->. 743 1. Move the cursor to the start of the first line below marked --->.
744 744
745 2. Press e until the cursor is on the end of li . 745 2. Press e until the cursor is on the end of li .
746 746
747 3. Type an a (lowercase) to append text AFTER the cursor. 747 3. Type an a (lowercase) to append text AFTER the cursor.
748 748