-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathVimtutor.txt
More file actions
1476 lines (1072 loc) · 57.9 KB
/
Copy pathVimtutor.txt
File metadata and controls
1476 lines (1072 loc) · 57.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
感觉vimtutor是众多vim帮助文档中最好的入门教程,其中的每一个知识点都有相应
的习题,可以让你在短时间内掌握基本的VIM操作。
想要入门vim的童鞋最好还是一边看文档,一边用vim自己尝试每个命令。
请通过vim练习:vim vimtutor_cn.txt
===============================================================================
= W e l c o m e t o t h e V I M T u t o r - Version 1.7 =
欢迎使用VIM教程 1.7版
===============================================================================
Vim is a very powerful editor that has many commands, too many to
explain in a tutor such as this. This tutor is designed to describe
enough of the commands that you will be able to easily use Vim as
an all-purpose editor.
VIM是一个强大的编辑器,它拥有大量的命令,不可能在本教程中全部解释。但是,本
教程描述了足够多的命令,使你能轻松将VIM作为通用编辑器。
The approximate time required to complete the tutor is 25-30 minutes,
depending upon how much time is spent with experimentation.
完成本教程的时间大约是25-30分钟,主要依赖于你在实验中花去的时间。
ATTENTION:
The commands in the lessons will modify the text. Make a copy of this
file to practise on (if you started "vimtutor" this is already a copy).
注意:
本课程中的命令会改变本文的内容,请创建一个副本来练习(如果你用命令“vimtutor"
开始,本文已经是自动生成的副本了)。
注:创建副本的命令为:
vim -u NONE -c 'e $VIMRUNTIME/tutor/tutor' -c 'w! vimtutor_copy' -c 'q';ls -l
It is important to remember that this tutor is set up to teach by
use. That means that you need to execute the commands to learn them
properly. If you only read the text, you will forget the commands!
很重要的一点是,要记住,本教程是用于指导VIM的使用。这意味着你需要执行命令
以正确地学习它们。如果你只是单纯阅读本文,你会很快忘记这些命令!
Now, make sure that your Shift-Lock key is NOT depressed and press
the j key enough times to move the cursor so that Lesson 1.1
completely fills the screen.
现在,请确保你的shift键是启用的,多次按 j 键移动到1.1课,使之
居于屏幕中心。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.1: MOVING THE CURSOR
1.1课:移动光标
** To move the cursor, press the h,j,k,l keys as indicated. **
**要移动光标,则按示意按下 h,j,k,l 键。**
^
k Hint: The h key is at the left and moves left.
< h l > The l key is at the right and moves right.
j The j key looks like a down arrow.
v
示意: 左边的h键是往左移
右边的l键是往右移
j键是往下移
1. Move the cursor around the screen until you are comfortable.
在屏幕中移动光标到你觉得合适的地方。
2. Hold down the down key (j) until it repeats.
Now you know how to move to the next lesson.
按住j键,使之重复作用。
现在你知道了怎么移动到下一节了吧。
3. Using the down key, move to Lesson 1.2.
使用下移键,移动到1.2节。
NOTE: If you are ever unsure about something you typed, press <ESC> to place
you in Normal mode. Then retype the command you wanted.
注意:如意你不确定你按下了什么,按<ESC>回到正常模式。再按你想要输入的命令。
NOTE: The cursor keys should also work. But using hjkl you will be able to
move around much faster, once you get used to it. Really!
注意:光标键同样生效。但hjkl键会使你移动得更快,只要你熟悉了它。真的!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.2: EXITING VIM
1。2节:退出VIM
!! NOTE: Before executing any of the steps below, read this entire lesson!!
!! 注:执行以下步骤前,请读完全节!!
1. Press the <ESC> key (to make sure you are in Normal mode).
按下<ESC>键(确保你处于正常模式)。
2. Type: :q! <ENTER>.
This exits the editor, DISCARDING any changes you have made.
按: :q! <ENTER>.
此命令使编辑器退出并放弃你作的作用改动。(即不保存对文本的编辑)
3. When you see the shell prompt, type the command that got you into this
tutor. That would be: vimtutor <ENTER>
当你看见shell提示时,输入以下命令并进入本教程:vimtutor<ENTER>
注:事实上你vimtutor是打开一个副本,你也可以打开你之前创建的副本:
vim vimtutor_copy
4. If you have these steps memorized and are confident, execute steps
1 through 3 to exit and re-enter the editor.
如果你已经记住的这些步骤并有信心了,就执行步骤1-3退出,然后再进入编辑器。
NOTE: :q! <ENTER> discards any changes you made. In a few lessons you
will learn how to save the changes to a file.
注:q!<enter> 会取消你对文本所作的任何改动。在新的一节你会学到保存文件的修改。
5. Move the cursor down to Lesson 1.3.
移动光标到1.3节。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.3: TEXT EDITING - DELETION
1.3节:文本编辑之删除
** Press x to delete the character under the cursor. **
**按下x键以删除光标所在的字符.**
1. Move the cursor to the line below marked --->.
移动光标到--->标记的行。
2. To fix the errors, move the cursor until it is on top of the
character to be deleted.
为了修复错误,移动光标到要删除字符上。
3. Press the x key to delete the unwanted character.
按下x键以删除不想要的字符。
4. Repeat steps 2 through 4 until the sentence is correct.
重复步骤2到4,直到语句正确。
---> The ccow jumpedd ovverr thhe mooon.
5. Now that the line is correct, go on to Lesson 1.4.
现在语句正确了吧,请移步1.4节。
NOTE: As you go through this tutor, do not try to memorize, learn by usage.
注:浏览本教程时,不要试着去记,而是学习其用法。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.4: TEXT EDITING - INSERTION
1.4节:文本编辑之插入
** Press i to insert text. **
**按下 i键 以插入文本**
1. Move the cursor to the first line below marked --->.
移动光标到--->标记的行。
2. To make the first line the same as the second, move the cursor on top
of the first character AFTER where the text is to be inserted.
为使第一行同第二行相同,移动光标到要插入文本处字符上。
3. Press i and type in the necessary additions.
按下i键,键入需要的字符。
4. As each error is fixed press <ESC> to return to Normal mode.
Repeat steps 2 through 4 to correct the sentence.
当错误被修复后,按下<esc>回到正常模式。重复步骤2到4以修改完整。
---> There is text misng this .
---> There is some text missing from this line.
5. When you are comfortable inserting text move to lesson 1.5.
当你正确插入完文本后,移步1.5节。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.5: TEXT EDITING - APPENDING
1.5节:文本编辑之追加
** Press A to append text. **
**按下A键以追加文本**
1. Move the cursor to the first line below marked --->.
It does not matter on what character the cursor is in that line.
移动光标到--->标记的行。
该行同下一行在字符上不匹配。
2. Press A and type in the necessary additions.
按下A键,然后键入要添加的内容。
3. As the text has been appended press <ESC> to return to Normal mode.
当添加完文本后按下<esc>,返回到正常模式。
4. Move the cursor to the second line marked ---> and repeat
steps 2 and 3 to correct this sentence.
移动光标到第二个--->标记的行。
---> There is some text missing from th
There is some text missing from this line.
---> There is also some text miss
There is also some text missing here.
5. When you are comfortable appending text move to lesson 1.6.
当你正确添加了文本后,请移步1.6节。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.6: EDITING A FILE
1.6节:编辑一个文件
** Use :wq to save a file and exit. **
** :wq 保存文件并退出。**
!! NOTE: Before executing any of the steps below, read this entire lesson!!
!! 注: 执行以下步骤之前,请读完全节!!
1. Exit this tutor as you did in lesson 1.2: :q!
Or, if you have access to another terminal, do the following there.
像1.2节一样,退出本教程: :q!
或者,你也可以访问其它的终端,并执行以下几步。
2. At the shell prompt type this command: vim tutor <ENTER>
'vim' is the command to start the Vim editor, 'tutor' is the name of the
file you wish to edit. Use a file that may be changed.
在shell提示符下,键入此命令: vim tutor <enter>
'vim' 是要启动的vim编辑器,‘tutor'是编辑的文件名。该文件将被编辑修改。
3. Insert and delete text as you learned in the previous lessons.
按照你在前几节你所学到的插入、删除文本。
4. Save the file with changes and exit Vim with: :wq <ENTER>
保存对文件的修改,并退出vim: :wq <enter>
5. If you have quit vimtutor in step 1 restart the vimtutor and move down to
the following summary.
如果你在步骤1中退出了本教程,启动本教程并移步到以的总结。
6. After reading the above steps and understanding them: do it.
阅读完以下几步后,理解并执行它们。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1 SUMMARY
课程1 的 总结
1. The cursor is moved using either the arrow keys or the hjkl keys.
h (left) j (down) k (up) l (right)
可以使用光标键或者hjkl键移动光标
h (左移) j (下移) k (上移) l (右移)
2. To start Vim from the shell prompt type: vim FILENAME <ENTER>
从sheel提示符启动VIM,请键入:vim FILENAME <ENTER>
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes.
OR type: <ESC> :wq <ENTER> to save the changes.
要退出VIM: <ESC> :q! <ENTER> 放弃所有修改。
或者键入: <ESC> :wq <ENTER> 保存所有的修改。
4. To delete the character at the cursor type: x
删除光标处的一个字符: x
5. To insert or append text type:
i type inserted text <ESC> insert before the cursor
A type appended text <ESC> append after the line
插入或者追加文本:
i type inserted text <ESC> 插入文本
A type appended text <ESC> 追加文本
NOTE: Pressing <ESC> will place you in Normal mode or will cancel
an unwanted and partially completed command.
注: 按下<ESC> 会回到正常模式,或者取消示完成的命令。
Now continue with Lesson 2.
现在继续进行第2课。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.1: DELETION COMMANDS
2.1节:删除命令
** Type dw to delete a word. **
**键入 dw 以删除一个单词.**
1. Press <ESC> to make sure you are in Normal mode.
按下 <ESC> 以确保你牌正常模式。
2. Move the cursor to the line below marked --->.
移动光标到以下以--->标记的行。
3. Move the cursor to the beginning of a word that needs to be deleted.
移动光标到需要删除的单词头。
4. Type dw to make the word disappear.
键入 dw 以使该单词消失(被删除)。
NOTE: The letter d will appear on the last line of the screen as you type
it. Vim is waiting for you to type w . If you see another character
than d you typed something wrong; press <ESC> and start over.
注: 当你键入d时,字d 会在屏幕最低处显示,此时VIM在等待你键入w。 当你错误的键入时,你会看见其它的字符而非d;按下 <ESC> 重新开始。
---> There are a some words fun that don't belong paper in this sentence.
5. Repeat steps 3 and 4 until the sentence is correct and go to Lesson 2.2.
重新步骤3到4,直到语句正确,然后移步2.2节。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.2: MORE DELETION COMMANDS
2.2节:其它的删除命令
** Type d$ to delete to the end of the line. **
** 键入 d$ 以删除光标到行尾间处的字符。**`
1. Press <ESC> to make sure you are in Normal mode.
按下 <ESC> 以确保你处于正常模式。
2. Move the cursor to the line below marked --->.
移动光标到以下以--->标记的行。
3. Move the cursor to the end of the correct line (AFTER the first . ).
移动光标到正确行的末端(在第一个.号后)。
4. Type d$ to delete to the end of the line.
键入 d$ 以删除到行尾。
---> Somebody typed the end of this line twice. end of this line twice.
5. Move on to Lesson 2.3 to understand what is happening.
移动到2.3节,并理解发生了什么。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.3: ON OPERATORS AND MOTIONS
2.3节:关于操作码和对象
(operator我理解为操作码,motions我理解为对象)
Many commands that change text are made from an operator and a motion.
The format for a delete command with the d delete operator is as follows:
d motion
Where:
d - is the delete operator.
motion - is what the operator will operate on (listed below).
A short list of motions:
w - until the start of the next word, EXCLUDING its first character.
e - to the end of the current word, INCLUDING the last character.
$ - to the end of the line, INCLUDING the last character.
Thus typing de will delete from the cursor to the end of the word.
NOTE: Pressing just the motion while in Normal mode without an operator will
move the cursor as specified.
许多修改文本的命令由两部分组成:操作码和对象。
删除命令d的格式如下:
d 对象
其中:
d -是操作码
motlion -是操作码要操作的对象(译者:更确切地说应是范围吧?)(罗列在下方)
关于对象的小清单:
w -到下一个单词头,除开所在的第一个字符。
e -到下一个单词尾,包括所在单词的最后一个字符。
$- 到行尾,包括了最后一个字符。
0- 到行首,包含空格。
^ -到行首,不含空格。
G -到文本最后一行首
gg -到文本首行。
所以de会删除光标处到单词尾下的字符。
注: 不带操作码按下对象键时,仅会按对象指定的方式 移动光标。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.4: USING A COUNT FOR A MOTION
2.4节:对对象使用计数
** Typing a number before a motion repeats it that many times. **
1. Move the cursor to the start of the line marked ---> below.
2. Type 2w to move the cursor two words forward.
3. Type 3e to move the cursor to the end of the third word forward.
4. Type 0 (zero) to move to the start of the line.
5. Repeat steps 2 and 3 with different numbers.
---> This is just a line with words you can move around in.
6. Move on to Lesson 2.5.
** 在对象前键入重复的次数.**
1. 移动光标到以下以--->标记的行。
2. 键入 2w 以使光标向后移动两个单词。
3. 键入 3e 以使光标向后移动到第三个单词尾。
4. 键入 0 移动到行首。
5. 使用不同 的数字重复步骤2到3.
---> This is just a line with words you can move around in.
6. 移步到2.5节。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.5: USING A COUNT TO DELETE MORE
2.5节:使用计数以删除得更多
** Typing a number with an operator repeats it that many times. **
** 为操作码键入 一个数字,使之重复多次。**
In the combination of the delete operator and a motion mentioned above you
insert a count before the motion to delete more:
d number motion
合并上文提到的删除操作码和对象,在对象前插入一个数字以删除更多
d 数字 对象
1. Move the cursor to the first UPPER CASE word in the line marked --->.
移动光标到以下以--->标记的行的第一个大写单词处。
2. Type d2w to delete the two UPPER CASE words
键入 d2w 以删除2个大写 单词。
3. Repeat steps 1 and 2 with a different count to delete the consecutive
UPPER CASE words with one command
用不同的计数重复步骤1和2,以一个命令删除多个连续的大写单词。
---> this ABC DE line FGHI JK LMN OP of words is Q RS TUV cleaned up.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.6: OPERATING ON LINES
2.6节:行的操作
** Type dd to delete a whole line. **
** 键入 dd 以删除一整行.**
Due to the frequency of whole line deletion, the designers of Vi decided
it would be easier to simply type two d's to delete a line.
由于需要频繁的删除一整行,vi的设计者决定通过简单的键入两d轻松删除一整行。
1. Move the cursor to the second line in the phrase below.
2. Type dd to delete the line.
3. Now move to the fourth line.
4. Type 2dd to delete two lines.
1. 移动移动到以以下短语的第二行。
2. 键入 dd 以删除行。
3. 现在移动到第四行。
4. 键入 2dd 以删除后两行。
---> 1) Roses are red,
---> 2) Mud is fun,
---> 3) Violets are blue,
---> 4) I have a car,
---> 5) Clocks tell time,
---> 6) Sugar is sweet
---> 7) And so are you.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.7: THE UNDO COMMAND
2.7节:恢复命令
** Press u to undo the last commands, U to fix a whole line. **
** 按下u 以恢复最后的命令,U 是修复一整行.**
1. Move the cursor to the line below marked ---> and place it on the
first error.
2. Type x to delete the first unwanted character.
3. Now type u to undo the last command executed.
4. This time fix all the errors on the line using the x command.
5. Now type a capital U to return the line to its original state.
6. Now type u a few times to undo the U and preceding commands.
7. Now type CTRL-R (keeping CTRL key pressed while hitting R) a few times
to redo the commands (undo the undo's).
1. 移动光标到以--->标记的行,定位到第一处错误。
2. 键入 x 以删除第一个不要的字符。
3. 现在 键入 u 以恢复最后执行的命令。
4. 这次用x命令修复该行的所有错误。
5. 现在键入一个大写的 U 以回到行的原始状态。
6。现在按几次 u 以恢复U 和之间的命令。
7. 现在 按几次 CTRL+R(按住CTRL同时敲击R),以撤消恢复命令(与u命令相反)。
---> Fiix the errors oon thhis line and reeplace them witth undo.
8. These are very useful commands. Now move on to the Lesson 2 Summary.
8. 这些都是非常有用的命令。现在移步到第2课的总结。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2 SUMMARY
第2课总结
1. To delete from the cursor up to the next word type: dw
删除光标到下一个单词: dw
2. To delete from the cursor to the end of a line type: d$
删除光标到行尾: d$
3. To delete a whole line type: dd
删除整行: dd
4. To repeat a motion prepend it with a number: 2w
预置数字以重复对象: 2w
5. The format for a change command is:
operator [number] motion
where:
operator - is what to do, such as d for delete
[number] - is an optional count to repeat the motion
motion - moves over the text to operate on, such as w (word),
$ (to the end of line), etc.
更改命令的格式:
操作码 [数字] 对象
6. To move to the start of the line use a zero: 0
用0移动到行首: 0
7. To undo previous actions, type: u (lowercase u)
To undo all the changes on a line, type: U (capital U)
To undo the undo's, type: CTRL-R
恢复之前的动作,键入: u (小写)
恢复对一行的所有改变,键入:U(大写)
恢复恢复,键入: CTRL-R
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 3.1: THE PUT COMMAND
3.1节:PUT命令
** Type p to put previously deleted text after the cursor. **
**输入 p 以在光标处粘贴先前删除的文本.**
1. Move the cursor to the first ---> line below.
移动光标到以下以--->标记的行。
2. Type dd to delete the line and store it in a Vim register.
输入 dd 以删除该行,该行会被存储至VIM寄存器中。
3. Move the cursor to the c) line, ABOVE where the deleted line should go.
移动光标到c)行,即被删除行要到达的前行。
4. Type p to put the line below the cursor.
键入 p 将那行粘贴到光标之下。
5. Repeat steps 2 through 4 to put all the lines in correct order.
重复步骤2到4以粘贴所有的行到正确的位置。
---> d) Can you learn too?
---> b) Violets are blue,
---> c) Intelligence is learned,
---> a) Roses are red,
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 3.2: THE REPLACE COMMAND
3.2节:替换命令
** Type rx to replace the character at the cursor with x . **
**键入 rx 以替换光标处的字符。**
1. Move the cursor to the first line below marked --->.
移动光标到以--->标记的行。
2. Move the cursor so that it is on top of the first error.
移动光标到第一个错误。
3. Type r and then the character which should be there.
键入 r和要更正的字符。
4. Repeat steps 2 and 3 until the first line is equal to the second one.
重复步骤2和3,直到一二行相同。
---> Whan this lime was tuoed in, someone presswd some wrojg keys!
---> When this line was typed in, someone pressed some wrong keys!
5. Now move on to Lesson 3.3.
现在移动到3.3节吧。
NOTE: Remember that you should be learning by doing, not memorization.
注:记住你应该学会做而非记。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 3.3: THE CHANGE OPERATOR
3.3:变更操作码
** To change until the end of a word, type ce . **
**要变更光标到词尾,键入:ce。**
1. Move the cursor to the first line below marked --->.
移动光标到以--->标记的行。
2. Place the cursor on the u in lubw.
定位光标至 lubw 的 u 上。
3. Type ce and the correct word (in this case, type ine ).
键入 ce 和 正确的单词(本例中,应该键入 ceine).
4. Press <ESC> and move to the next character that needs to be changed.
按<esc>,并移动到下一个需要更改的字符。
5. Repeat steps 3 and 4 until the first sentence is the same as the second.
重复步骤3和4,以使第一句同第二句相同。
---> This lubw has a few wptfd that mrrf changing usf the change operator.
---> This line has a few words that need changing using the change operator.
Notice that ce deletes the word and places you in Insert mode.
注意,ce 是删除单词并定位到插入模式(译者:其实后面的e就是对象,而前面的 c是操作码)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 3.4: MORE CHANGES USING c
3.4节:其它的c更改命令
** The change operator is used with the same motions as delete. **
** 同delete 命令一样,更改操作码也使用相同的对象。
1. The change operator works in the same way as delete. The format is:
c [number] motion
更改操作码的用法与删除操作码相同,格式为:
c [number] motion
2. The motions are the same, such as w (word) and $ (end of line).
所有的对象是相同的,例如w(单词)、$(行尾)。
3. Move to the first line below marked --->.
移动到以下以--->标记的第一行。
4. Move the cursor to the first error.
移动光标到第一处错误。
5. Type c$ and type the rest of the line like the second and press <ESC>.
键入 c$ 和 余下的同第二行相同的字等符,并按下<ESC>。
---> The end of this line needs some help to make it like the second.
---> The end of this line needs to be corrected using the c$ command.
NOTE: You can use the Backspace key to correct mistakes while typing.
注: 在键入时,你可以使用退格以删除错误。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 3 SUMMARY
第3课总结
1. To put back text that has just been deleted, type p . This puts the
deleted text AFTER the cursor (if a line was deleted it will go on the
line below the cursor).
要粘贴刚刚删除的文本,键入 p.这会把被删文本粘贴到光标之后(如果某行被删,它会被粘贴到光标之后的一行)。
2. To replace the character under the cursor, type r and then the
character you want to have there.
要替换光标处的字符,键入 r 和要插入的字符。
3. The change operator allows you to change from the cursor to where the
motion takes you. eg. Type ce to change from the cursor to the end of
the word, c$ to change to the end of a line.
更改操作码允许你更改从光标到对象定义处。例如:键入 ce 以更改光标到词尾,键入c$会更改光标到行尾。
4. The format for change is:
c [number] motion
更改的格式:
c [number] motion
Now go on to the next lesson.
现在进入 下一课吧。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4.1: CURSOR LOCATION AND FILE STATUS
4.1节:光标定位和文件状态
** Type CTRL-G to show your location in the file and the file status.
Type G to move to a line in the file. **
**键入 CTRL-G 以显示你在文件中的位置和状态。
键入G 以移动到文件行尾。
NOTE: Read this entire lesson before executing any of the steps!!
注:执行任何一步前请读完本课。
1. Hold down the Ctrl key and press g . We call this CTRL-G.
A message will appear at the bottom of the page with the filename and the
position in the file. Remember the line number for Step 3.
按住CTRL键,并键入 g. 我们称之为CTRL-G。
在页面的底部会呈现一个信息,指出文件名和当前文件位置。记住行号
以在第三步使用。
NOTE: You may see the cursor position in the lower right corner of the screen
This happens when the 'ruler' option is set (see :help 'ruler' )
注: 你可能见到 处于屏幕右下角的光标
这发生在设置了‘ruler'选项时(见 :help 'ruler')
2. Press G to move you to the bottom of the file.
Type gg to move you to the start of the file.
按 G 以移动到文件底。
键入 gg 以移动到文件首。
3. Type the number of the line you were on and then G . This will
return you to the line you were on when you first pressed CTRL-G.
键入你之前所在 的行号,然后键入G。
这样你会返回到你之前,即你按CTRL-G时的那一行。
4. If you feel confident to do this, execute steps 1 through 3.
如果你有信心去做它,请执行1到3步。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4.2: THE SEARCH COMMAND
4.2节:搜索命令
** Type / followed by a phrase to search for the phrase. **
**按 / 并接一个要搜索的短语。**
1. In Normal mode type the / character. Notice that it and the cursor
appear at the bottom of the screen as with the : command.
在正常模式,键入 / 字母。注意,像:命令一样,光标会出现在屏幕底
2. Now type 'errroor' <ENTER>. This is the word you want to search for.
现在,键入 'errroor'<ENTER>.这是你想要搜索的单词。
3. To search for the same phrase again, simply type n .
To search for the same phrase in the opposite direction, type N .
想再次搜索相同的短语,简单的键入 n.
想再次搜索相同的短语并以相反的方向,键入 N.
4. To search for a phrase in the backward direction, use ? instead of / .
要反向搜索一个短语,使用?替换/.
5. To go back to where you came from press CTRL-O (Keep Ctrl down while
pressing the letter o). Repeat to go back further. CTRL-I goes forward.
要返回之前的位置,键入 CTRL-O(按住 CTRL时,按下字母o).重复几次回到
更早的那刻。CTRL-I是向前移动。
---> "errroor" is not the way to spell error; errroor is an error.
NOTE: When the search reaches the end of the file it will continue at the
start, unless the 'wrapscan' option has been reset.
注: 当搜索到达文件尾时,它会从文件头开始搜索,除非’wrapscan'选项被设置了。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4.3: MATCHING PARENTHESES SEARCH
4.3节:括号匹配搜索
** Type % to find a matching ),], or } . **
**键入 % 以找到所匹配的),],or }.**
1. Place the cursor on any (, [, or { in the line below marked --->.
在以--->标记的行中,将光标定位到任一的(,[,{.
2. Now type the % character.
现在按下 %字符。
3. The cursor will move to the matching parenthesis or bracket.
将光标移动到匹配的括号上。
4. Type % to move the cursor to the other matching bracket.
按 % 以移动光标到其它的匹配括号。
5. Move the cursor to another (,),[,],{ or } and see what % does.
移动光标到 另外的(,),[,],{ or },看看 % 是怎么做的。
---> This ( is a test line with ('s, ['s ] and {'s } in it. ))
NOTE: This is very useful in debugging a program with unmatched parentheses!
注:在高度程序的非匹配括号是这个是相当有用的。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4.4: THE SUBSTITUTE COMMAND
4.4:替换命令
** Type :s/old/new/g to substitute 'new' for 'old'. **
**键入 :s/old/new/g 以用’new'替换‘old’。**
1. Move the cursor to the line below marked --->.
移动光标到以下以--->标记的行。
2. Type :s/thee/the <ENTER> . Note that this command only changes the
first occurrence of "thee" in the line.
键入 :s/thee/the <ENTER>.注意此命令仅会更改本行的第一例"thee".
3. Now type :s/thee/the/g . Adding the g flag means to substitute
globally in the line, change all occurrences of "thee" in the line.
现在 键入 :s/three/the/g. 加入的 g 标志 意味着 会替换本行所有的
“thee".
---> thee best time to see thee flowers is in thee spring.
4. To change every occurrence of a character string between two lines,
type :#,#s/old/new/g where #,# are the line numbers of the range
of lines where the substitution is to be done.
Type :%s/old/new/g to change every occurrence in the whole file.
Type :%s/old/new/gc to find every occurrence in the whole file,
with a prompt whether to substitute or not.
要更改两行间的所有的匹配字符串:
type :#,#s/old/new/g 其中,#,#是要更改的行号的范围
Type :%s/old/new/g 更改全文件中的所有事件。
Type :%s/old/new/gc 更改全文件中的所有事件,并给出替换与否的提示。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4 SUMMARY
第4课总结
1. CTRL-G displays your location in the file and the file status.
G moves to the end of the file.
number G moves to that line number.
gg moves to the first line.
CTRL-G 显示 当前文件位置和状态。
G 移动到文件尾。
数字 G 移动到某行。
gg 移动到文件头。
2. Typing / followed by a phrase searches FORWARD for the phrase.
Typing ? followed by a phrase searches BACKWARD for the phrase.
After a search type n to find the next occurrence in the same direction
or N to search in the opposite direction.
CTRL-O takes you back to older positions, CTRL-I to newer positions.
键入 / ,接上要向前搜索的短语。
键入 ? 接上要向后搜索的短语
搜索后,按n 以相同的方向搜索下一事件,按N以相反的方向搜索。
CTRL-O 使你返回到以前的位置,CTRL-I 回到以后的位置 。
3. Typing % while the cursor is on a (,),[,],{, or } goes to its match.
键入 % 时括号上的光标会匹配自己的括号。
4. To substitute new for the first old in a line type :s/old/new
To substitute new for all 'old's on a line type :s/old/new/g
To substitute phrases between two line #'s type :#,#s/old/new/g
To substitute all occurrences in the file type :%s/old/new/g
To ask for confirmation each time add 'c' :%s/old/new/gc
在一行中以new替换old. :s/old/new
在一行中以new替换所有的old :s/old/new/g
在#到#两行间,以new 替换所有的old :#,#s/old/new/g
替换文件中的所有事件 :%s/old/new/g
每次替换前确认,增加‘c’' :%s/old/new/gc
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5.1: HOW TO EXECUTE AN EXTERNAL COMMAND
5.1节:怎样执行外部命令
** Type :! followed by an external command to execute that command. **
** 按 :! 并加上要执行的外部命令。××
1. Type the familiar command : to set the cursor at the bottom of the
screen. This allows you to enter a command-line command.
键入类似的命令: 使光标处于屏幕底。这允许你键入一个命令行。
2. Now type the ! (exclamation point) character. This allows you to
execute any external shell command.
现在键入 ! 字符。这允许你执行一个任何外部的shell命令
3. As an example type ls following the ! and then hit <ENTER>. This
will show you a listing of your directory, just as if you were at the
shell prompt. Or use :!dir if ls doesn't work.
作为一个例子,键入 ls 接一个!,然后敲击<enter>.这会显示一个你的目录,
就像你在一个shell提示符一样。或者 使用 :!dir (如果 ls不起作用的话)。
NOTE: It is possible to execute any external command this way, also with
arguments.
注: 通过这种方式执行任何的外部命令是可能的,同样可以跟参数。
NOTE: All : commands must be finished by hitting <ENTER>
From here on we will not always mention it.
注: 所有的 : 命令必须以敲击<enter>结束。
从这里开始,我们不会问题提及这些问题。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5.2: MORE ON WRITING FILES
5.2节:其它的写文件命令
** To save the changes made to the text, type :w FILENAME. **
**要保存对文本作的改动,键入 :w FILENAME.**
1. Type :!dir or :!ls to get a listing of your directory.
You already know you must hit <ENTER> after this.
键入 :!dir or :!ls 以得到你的目录的清单。
你已经 知道了你必须在这句后 敲击<enter>.
2. Choose a filename that does not exist yet, such as TEST.
选择一个不存在的文件名,如TEST。
3. Now type: :w TEST (where TEST is the filename you chose.)
现在 键入 : :w TEST (其中的TEST是你选择的文件名)。
4. This saves the whole file (the Vim Tutor) under the name TEST.
To verify this, type :!dir or :!ls again to see your directory.
这会以TEST的名字 保存全部文件(即这个 VIM教程)。
要确认之,请键入 :!dir or :!ls 以查看你的目录。
NOTE: If you were to exit Vim and start it again with vim TEST , the file
would be an exact copy of the tutor when you saved it.
注:如果你之前退出了VIM并以vim TEST再次启动了它,这个文件就会是你保存时的教
程的副本。
5. Now remove the file by typing (MS-DOS): :!del TEST
or (Unix): :!rm TEST
现在键入以下命令删除这个文件:
(MS-DOS): :!del TEST
or (Unix): :!rm TEST
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5.3: SELECTING TEXT TO WRITE
5.3节:选择要写的文本
** To save part of the file, type v motion :w FILENAME **
** 要保存部分文件,键入 v 对象 :w FILENAME **
1. Move the cursor to this line.
移动光标到此行。
2. Press v and move the cursor to the fifth item below. Notice that the
text is highlighted.
按 v 并移动 光标到 以下的第5项。 注意这些文本会珵高亮。
3. Press the : character. At the bottom of the screen :'<,'> will appear.
按 :字符。在屏幕底会显示 :'<,'> will appear.
4. Type w TEST , where TEST is a filename that does not exist yet. Verify
that you see :'<,'>w TEST before you press Enter.
按 w TEST ,其中 TEST 是一个不存在 的文件。
确认你按<enter>前你看到了:'<,'>w TEST.
5. Vim will write the selected lines to the file TEST. Use :!dir or !ls
to see it. Do not remove it yet! We will use it in the next lesson.
vim 会把选定的行进文件TEST中,使用 :!dir or !ls 作检查。先别删除它!
我们会下节使用它。
NOTE: Pressing v starts Visual selection. You can move the cursor around
to make the selection bigger or smaller. Then you can use an operator
to do something with the text. For example, d deletes the text.
注: 按下v 开始选择选择。你可以将光标移动到其它地方以使选择的区变大或者 变小。
然后你可使用操作码对文本做一些事。比如,d 删除文件。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5.4: RETRIEVING AND MERGING FILES
5.4节:恢复和合并文件
** To insert the contents of a file, type :r FILENAME **
** 要插入一个文件的内容键入:r FILENAME **
1. Place the cursor just above this line.
NOTE: After executing Step 2 you will see text from Lesson 5.3. Then move
DOWN to see this lesson again.
只需将光标放到这一行。
注: 执行第二步后你会看到5.3节的内容。然后下移并再次查看这节。
2. Now retrieve your TEST file using the command :r TEST where TEST is
the name of the file you used.
The file you retrieve is placed below the cursor line.
现在 恢复 你的TEST文件,使用命令 :r TEST 其中,TEST 是你使用的文件。
你要恢复的文件将被放置在光标行下面。
3. To verify that a file was retrieved, cursor back and notice that there
are now two copies of Lesson 5.3, the original and the file version.
要确认文件被恢复了,用光标返回,注意这里有两5.3节的副本,原本的文件版。
NOTE: You can also read the output of an external command. For example,
:r !ls reads the output of the ls command and puts it below the
cursor.
注: 你可能会阅读外部命令的输出。如 :r !ls 读入ls命令的输出并将其放置到
光标下。`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5 SUMMARY
第5课总结
1. :!command executes an external command.
Some useful examples are:
(MS-DOS) (Unix)
:!dir :!ls - shows a directory listing.
:!del FILENAME :!rm FILENAME - removes file FILENAME.
:!command 执行外部命令