vim 中如何检查两行是否相同?
我知道我可以选择线路并使用类似“
:w ! sort | uniq -c
有更好的解决方案吗?”之类的东西。
I know I can select the lines and use something like
:w ! sort | uniq -c
Is there a better solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 vimscript 很容易做到这一点:
其中 *line_number_1* 和 *line_number_2* 是整数。您可以使用
line('.')
计算当前行号。请参阅
:help getline()
和help line()
。更广泛的文档是help eval.txt
。With vimscript it is easy to do that:
where *line_number_1* and *line_number_2* are integers. You can compute the current line number with
line('.')
.See
:help getline()
andhelp line()
. Broader documentation ishelp eval.txt
.