参考:
https://vimjc.com/vim-visual-mode.html
https://stackoverflow.com/questions/6971903/how-to-do-column-editing-in-vim
(1) Ctrl + v进入块选择模式
(2) 向上或向下移动光标选择多行
(3) 移动光标到行的起始位置
(4) 然后按大写的 I 进入行首插入模式
(5) 插入注释符
(6) 按Esc回到命令模式
需要注意的是:Vim同时编辑多行时,只有在当前的插入动作结束后(按Esc退为命令模式),之前选中的其它行才会出现同样插入的文本
Stand on the beginning of the column
Press Ctrl+v, then mark across the column you want to edit.
Press Shift+i to insert text at the beginning of the column, Shift+a to append text, r to replace highlighted text, d to delete, c to change… etc.
Hit ESC when done.
博客介绍了Vim编辑器中多行编辑及插入注释的方法。通过Ctrl + v进入块选择模式,上下移动光标选多行,移至行首按大写I进入行首插入模式,插入注释符后按Esc回到命令模式。还提到编辑多行时,按Esc结束插入动作后,选中行才会出现相同插入文本。
4382

被折叠的 条评论
为什么被折叠?



