VIM:如何仅匹配某些行
我不知道如何匹配仅某些行的整行 pe
如何匹配(并突出显示)第 10 行到第 25 行中的每隔 3 行:
match
10、11、12号线
16、17、18号线
22、23、24号线
I can't find out how to match the entire line of only certain lines p.e.
How can I match (and highlight) every other 3 lines from lines 10 till 25:
match
line 10,11,12
line 16,17,18
line 22,23,24
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,务实的方法是定义一个函数来运行您的文件并匹配您想要的所有行。像这样的东西:
现在使用例如
:10,25HiLines 3
来匹配从 10 到 25 的每隔 3 行。(根据口味调整突出显示组)。
Hm, the pragmatic way would be to define a function that runs over your file and matches all lines you'd like. Something like this:
Now use e.g.
:10,25HiLines 3
to match every other 3 lines from 10 till 25.(Adjust highlighting group to taste).
试试这个
将突出显示第 10、11 和 12 行
Try this
will highlight lines 10, 11 and 12