我正在使用vim-test 我正在尝试构建一个使用MakeGreen插件的测试策略。
命令是:TestFile | MakeGreen()
,但这是问题。
function! MakeGreenStrategy(cmd) abort
execute '!'.a:cmd " this is a shell command which I would like to pipe into a vim function called MakeGreen()
endfunction
那么什么是将shell命令的输出传递到vim函数(如第一个命令但是在vimscript函数中)的正确方法。