标签:vim class bsp font 删除 style span 批量 div
删除包含特定字符的行
g/pattern/d (全局删除匹配行) 1,5g/pattern/d (删除第1-5行里的匹配行)
删除不包含指定字符的行
v/pattern/d g!/pattern/d (全部删除)
...
拾遗:Vim 批量删除匹配到的行
原文地址:http://www.cnblogs.com/hadex/p/6672835.html