当我在gvim中打开Ruby文件时,出现以下错误:

Error detected while processing C:\Program Files\Vim\vim73\ftplugin\ruby.vim:
NoMethodError: undefined method `specifications' for "C:/Ruby192/lib/ruby/gems/1.9.1":String

E121: Undefined variable: s:ruby_path
E51: Invalid expression: s:ruby_path

在C:\程序文件\ vim\vim73\ftplugin\下也找不到任何ruby.vim有人知道这个问题吗?
谢谢

最佳答案

您可以在$VIMRUNTIME/ftplugin/ruby.vim中添加s:ruby路径,例如:

let s:ruby_path="d:/ruby/bin"

所以,这是对的!

09-16 17:51