VI读取命令的输出,并将其用于搜索
我想将一个键映射到外部 shell 命令,然后该命令将返回一个令牌以在 vi 中搜索。 vi 应该使用命令的结果来搜索并跳转到包含它的行。怎样才能做到呢?谢谢!
I would like to map a key to an external shell command, which would then deliver back a token to search for in vi. vi should use the command's result then to search and to jump to line containing it. How it can be done? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其中
= ...
将计算表达式并内联使用结果字符串,而system("cmd")
返回一个字符串,其中包含运行命令cmd
的内容。where
<C-R>= ... <CR>
will evaluate an expression and use the resulting string inline, andsystem("cmd")
returns a string with the contents of running the commandcmd
.