将 vim 选择替换为 shell 命令的输出

发布于 2024-11-27 21:59:05 字数 260 浏览 0 评论 0原文

我需要将 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 技术交流群。

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

发布评论

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

评论(4

随遇而安 2024-12-04 21:59:05

您可以使用 :! 命令通过外部程序过滤选定的文本。
文本被输入到标准输入并替换为标准输出的结果。

在这种情况下,您必须使用 cat 和命令替换将这些行作为参数提供给curl,如下所示:

:'<,'>!curl -sSd css="`cat`" http://prefixr.com/api/index.php

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:

:'<,'>!curl -sSd css="`cat`" http://prefixr.com/api/index.php
画尸师 2024-12-04 21:59:05

通过选择一行或多行并使用 :!您可以将这些行传递给命令,例如:

因此,使用 sort 命令对整个文件进行排序,请尝试以下操作:ggVG !sort,它在编辑器中应如下所示:

B

C

一个

:'<,'>!排序

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:

B

C

A

:'<,'>!sort

我纯我任性 2024-12-04 21:59:05

现在无法测试,因此不能 100% 确定它是否有效

esc,然后是

:r ! curl -sSd="`cat`" http://prefixr.com/api/index.php`

Can't test this right now so not 100% sure if it will work

esc, followed by

:r ! curl -sSd="`cat`" http://prefixr.com/api/index.php`
凡尘雨 2024-12-04 21:59:05

对于没有无端换行符的管道单词,请参阅此示例以大写所选文本:

select-region c Control-r = system("perl -pe '$=uc($)'", @")

说明:选择区域,c为(改变选择),Cr为执行表达式。
注意:美元是美元下划线,但发布后下划线不可见。

For piping words without gratuitous newlines, see this example to uppercase selected text:

select-region c Control-r = system("perl -pe '$=uc($)'", @")

Explanation: select region, c is to (change selection), C-r to execute expression.
Note: dollar is dollar underscore, but underscore not visible after posting.

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