Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚如何在 Debian stable 上的 gvim 中发出命令,以将缓冲区文本转换为过滤到 jive 中的文本,正如过滤器程序使用的那样。已尝试使用 :r 和其他一些发现的技巧,但似乎都没有真正奏效。我可能遗漏了一些在启示后会很容易的东西。有什么建议么?
就这么简单
:[range]!jive
Fo' de current line, dig dis:
:.!jive
视觉选择:
:'<,'>!jive
Fo' de 整个文档,挖掘 dis:
:%!jive
哇,这个过滤器太可怕了!快的:$ sudo port uninstall jive
$ sudo port uninstall jive
各种过滤器命令记录在 vim 文档的第 4.1 节“过滤器命令”中,可通过:h filter.
:h filter