通过vim的visual模式来快速操作处理文本
ctrl+v选择文本区块
shift+v选择行,高度选区
如果想在一系列连续行上执行一条普通模式命令,我们可以用:normal命令
the first line
the second line
the third line
另外一种方法统一行尾加上分号;
1、shift+a,然后;
接着
2、jVG
3、:'<,'>normal .
第三种方法
1、VG
2、:'<,'>normal A;
第四种方法
:%normal A;
注释
:$normal i//
:1,3normal i//
格式化处理行与列
如
username sex
test 男
victor 男
1、光标移动到两列空白处
2、ctrl+v
3、3j
4、x
5、gv
6、r|
7、yyp
8、r-
如图
username | sex
-----------------
test | 男
victor | 男