如何在 Textmate 中插入 rake 的输出
我一直在使用 Vim 进行 Rails 应用程序开发。 我正在尝试使用 Textmate。
我有一个生成一些文本的 rake 任务。 如何将 rake 的输出插入到当前文件中?
我在 Vim 中执行“:r !rake some_task”。 Textmate 的等效项是什么?
谢谢。
山姆
I've been using Vim for rails app dev.
I am trying to use Textmate.
I have a rake task which generates some text.
How do I insert the output of the rake to the current file?
I do ":r !rake some_task" in Vim.
What's the equivalent for Textmate?
Thanks.
Sam
我不确定这是否属于 SO,但无论如何,这里有一个答案。
使用
Text
菜单中的Filter Through Command...
菜单项。对于输入,选择无
,对于输出,选择插入为文本
。该命令应该是您的 rake 命令。I'm not sure this belongs on SO, but here's an answer anyway.
Use the
Filter Through Command...
menu item in theText
menu. For input, selectNone
and output, selectInsert as text
. The command should be your rake command.