Skip to content

vim相关信息

批量注释与批量取消注释
shell
//批量插入
:1,23s/^/#/g
//批量删除
:1,23s/^#//g
//批量删除回车
:%s/\n//g

Released under the MIT License.