将 vim 选择替换为 shell 命令的输出
我需要将 vim 中的一些选定文本作为参数值传递给curl 命令。例如。我需要能够
curl -sSd css="body { border-radius: 5px; }" http://prefixr.com/api/index.php
从 vim 运行。显然,“body { border-radius: 5px; }”部分将是动态的。通常,vim 中的视觉模式选择。
如何获取选定的文本并将其作为参数传递给curl?
I need to pass some selected text in vim to a curl command as a parameter value. For example. I need to be able to run
curl -sSd css="body { border-radius: 5px; }" http://prefixr.com/api/index.php
from vim. Obviously, the "body { border-radius: 5px; }" part will be dynamic. Usually, a visual mode selection in vim.
How do I get the selected text and pass it as a parameter to curl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
:!
命令通过外部程序过滤选定的文本。文本被输入到标准输入并替换为标准输出的结果。
在这种情况下,您必须使用 cat 和命令替换将这些行作为参数提供给curl,如下所示:
You can use the
:!
command to filter selected text through an external program.The text is fed to stdin and substituted with the results from stdout.
In this case you'll have to use cat and command substitution to feed the lines as a parameter to curl, like so:
通过选择一行或多行并使用 :!您可以将这些行传递给命令,例如:
因此,使用
sort
命令对整个文件进行排序,请尝试以下操作:ggVG !sort,它在编辑器中应如下所示:By selecting one or more rows and using :! you can pass these lines to a command, for example:
So sort an entire file using the
sort
command, try this: ggVG !sort, which should look like this in your editor:现在无法测试,因此不能 100% 确定它是否有效
esc,然后是
Can't test this right now so not 100% sure if it will work
esc, followed by
对于没有无端换行符的管道单词,请参阅此示例以大写所选文本:
说明:选择区域,c为(改变选择),Cr为执行表达式。
注意:美元是美元下划线,但发布后下划线不可见。
For piping words without gratuitous newlines, see this example to uppercase selected text:
Explanation: select region, c is to (change selection), C-r to execute expression.
Note: dollar is dollar underscore, but underscore not visible after posting.