我有一个Rails RSpec文件,看起来像
require 'spec_helper'
describe "Something" do
...
end
当我尝试使用 Ctrl + N 自动完成该文件中的任何内容时,我得到:
文字版:
Scanning included file: spec_helper.rb
E854: path too long for completion
Press ENTER or type command to continue
如果我 Ctrl + C 这就完美地完成了我的话。
为了避免Vim通过使用包含的文件自动完成,我可以这样做:
:set complete-=i
但这不是问题的根源。
我该如何解决这个问题?
答案 0 :(得分:8)