我将gVim配置到Cygwin的.bashrc中。
从Vim中打开的文件运行perl脚本时,它可以正常工作。
我的意思是在命令行中在Vim中执行以下命令:
:!perl ./perl_script.pl
但是,当我将其添加到Vim脚本函数
时 function! Run_perl_script()
!perl perl_script.pl
endfunction
au VimEnter * call Run_perl_script()
它在命令窗口中抛出错误,说:
/bin/bash -c "./perl_script.pl"
The system cannot find the path specified.
shell returned 1
我错过了什么?