学习VIM入门篇Tip2: 混合(Compound)命令

在一些常用的情形当中, 我们出于效率考量会试图找出一个减少不必要移动的命令来代替原先冗余的命令。

下面是一个简单的汇集混合(Compound)命令的列表:

混合命令(Compound Command) 普通写法(Equivalent in Longhand)
C C$
s cl
S C
I ^i
A $a
o A<Enter>
O ko

参考: 《Practical Vim》- Tip 2