comparison runtime/tutor/tutor @ 3847:1003f9b262d7

Update runtime files.
author Bram Moolenaar <bram@vim.org>
date Wed, 03 Oct 2012 21:46:54 +0200
parents c0e675a3e363
children 7818ca6de3d0
comparison
equal deleted inserted replaced
3846:f8a0288d2f6e 3847:1003f9b262d7
656 3. Press the : character. At the bottom of the screen :'<,'> will appear. 656 3. Press the : character. At the bottom of the screen :'<,'> will appear.
657 657
658 4. Type w TEST , where TEST is a filename that does not exist yet. Verify 658 4. Type w TEST , where TEST is a filename that does not exist yet. Verify
659 that you see :'<,'>w TEST before you press <ENTER>. 659 that you see :'<,'>w TEST before you press <ENTER>.
660 660
661 5. Vim will write the selected lines to the file TEST. Use :!dir or !ls 661 5. Vim will write the selected lines to the file TEST. Use :!dir or :!ls
662 to see it. Do not remove it yet! We will use it in the next lesson. 662 to see it. Do not remove it yet! We will use it in the next lesson.
663 663
664 NOTE: Pressing v starts Visual selection. You can move the cursor around 664 NOTE: Pressing v starts Visual selection. You can move the cursor around
665 to make the selection bigger or smaller. Then you can use an operator 665 to make the selection bigger or smaller. Then you can use an operator
666 to do something with the text. For example, d deletes the text. 666 to do something with the text. For example, d deletes the text.