vim 命令记录

依然范特西╮ 提交于 2020-07-27 14:33:01

注释块:转自:https://unix.stackexchange.com/questions/120615/how-to-comment-multiple-lines-at-once

To comment out blocks in vim:

  1. press Esc (to leave editing or other mode)
  2. hit ctrl + v (visual block mode)
  3. use the ↑ / ↓ arrow keys to select lines you want (it won't highlight everything - it's OK!)
  4. Shift + i (capital I)
  5. insert the text you want, e.g. %
  6. press Esc Esc.

 

Ranges:

You can do it with the following commands:

for commenting:

:66,70s/^/#

for uncommenting:

:66,70s/^#/

Obviously, here we're commenting lines from 66 to 70 (inclusive).

显示行数:

esc

:set number

转跳到某一行(第n 行):

esc

:n 

撤销:

esc

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!