VI读取命令的输出,并将其用于搜索

发布于 2024-10-19 21:12:46 字数 87 浏览 4 评论 0原文

我想将一个键映射到外部 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微暖i 2024-10-26 21:12:46
/<C-R>=system("cmd")<CR><CR>

其中 = ... 将计算表达式并内联使用结果字符串,而 system("cmd") 返回一个字符串,其中包含运行命令 cmd 的内容。

/<C-R>=system("cmd")<CR><CR>

where <C-R>= ... <CR> will evaluate an expression and use the resulting string inline, and system("cmd") returns a string with the contents of running the command cmd.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文