嗨在G
vim中,我需要在文件中的每个注释之前插入一行或两行.
例如
#comment 1 #comment 2 statement 1 statement 2 #comment 3
运行comamnd之后应该是
#comment 1 #comment 2 statement 1 statement 2 #comment 3
我该怎么做?
谢谢
更新:感谢您的答案
但是如果这些评论是连续的,我不希望在他们之间添加换行符.有没有办法做到这一点?
例如
#comment 1 #comment 2
我不想要它
#comment 1 #comment 2
您也可以使用以下命令::g / ^#/ norm O
原文链接:https://www.f2er.com/bash/383754.html好的,这里是一个解释:
这是一个捷径:global / ^#/ normal O,这意味着:
>对于以’#’开头的每一行(:global / ^#/)在’正常模式'(正常O)中执行’do’O’命令 – 这意味着在’normal'(not insert and not:command)VIM模式下做一个’O’键.而’O’插入新行.