1.vim打开多个文件
vim file,file2,......
vim -O file1,file2,.......并列打开文件;
进入VIM后--》:open file
:sp file
:vs file
窗格切换: ctrl + 6 或者 ctrl+w+方向;
:bn 或者 ctrl+w+h/j/k/l
:bp 或者 ctrl +ww
2.列编辑
删除列
1.光标定位要操作的地方;
2.ctrl + v进入“可视化”模式,选取;
3.按d删除;
插入列
1.光标定位;
2.ctrl + v,选取;
3.shift + i,插入内容;
4.Esc按两次;