在vim中使用bash进程替换

在vim中使用bash进程替换,vim,process-substitution,Vim,Process Substitution,我想使用vim中的bash进程替换,我该怎么做?我需要我可以键入如下内容: :tabe `<(git show mybranch:mydir/myfile.txt)` :tabe`使用:tabe打开新选项卡并 :r !cmd 在光标位置插入cmd的输出 使用 :tabe `cmd` 将命名使用命令输出创建的选项卡使用:tabe打开新选项卡并 :r !cmd :tabe|r!git show mybranch:mydir/myfile.txt 在光标位置插入cmd的输出 使用

我想使用vim中的bash进程替换,我该怎么做?我需要我可以键入如下内容:

:tabe `<(git show mybranch:mydir/myfile.txt)`

:tabe`使用
:tabe
打开新选项卡并

:r !cmd
在光标位置插入
cmd
的输出

使用

 :tabe `cmd`

将命名使用命令输出创建的选项卡使用
:tabe
打开新选项卡并

:r !cmd
:tabe|r!git show mybranch:mydir/myfile.txt
在光标位置插入
cmd
的输出

使用

 :tabe `cmd`
将命名使用命令输出创建的选项卡

:tabe|r!git show mybranch:mydir/myfile.txt