Cygwin:'尝试从.vimrc调用perl脚本时找不到指定的路径'; gvim配置为cygwin

时间:2015-10-26 10:02:26

标签: perl vim cygwin

我将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

我错过了什么?

0 个答案:

没有答案