Vim has three kinds of Visual mode. In character-wise Visual mode, we can select anything from a single character up to a range of characters within a line or spanning multiple lines. This is suitable for working at the level of individual words or phrases. If we want to operate on entire lines, we can use line-wise Visual mode instead. Finally, block-wise Visual mode allows us to work with columnar regions of the document
vim提供了3中形式的Visual模式。 
第一种是字符模式,通过输入命令v进入该模式,可以从一个字符开始选择多个字符甚至多行字符。这种模式适合处理字或者段落。 
第二种是行模式,可以快速选择单行或者多行。 
第三种是块模式,可以选择文本中某一方形区域的字符。 
如图,我们可以输入命令小写v,进入字符模式。 
输入命令大写V,进入行模式。 
输入命令ctrl+v进入块模式。 
然后结合移动命令,选择所需的字符区域。 
v进入字符Visual模式, 
b为移动命令,移动到上一个word的首字符,在Visual模式下就是将选择范围增加到上一个字符,该例子中选择范围到“to”的t字符上。 
再次执行b命令,选择范围增加到here的首字符h上。 
在visual模式下一端是固定的,另外一端是可变的,我们可以通过命令o改变两端。在该例子中,执行o后,移动端由原来左边的h变为右边的h,执行e命令,选择范围向后增加到下一个word的末尾。
[Practical.Vim(2012.9)].Drew.Neil.Tip21学习摘要
原文:http://blog.csdn.net/wdy_yx/article/details/46402179