我最近将ripgrep添加到我的vim 插件列表中,并且在安装后立即开始在我加载 vim 时收到此错误消息:
Error detected while processing /Users/my_macbook/.vim/plugged/vim-ripgrep/plugin/vim-ripgrep.vim:
line 149: E1208: -complete used without -nargs
Press ENTER or type command to continue
打开有问题的文件并查看第 148-149 行会发现:
148 command! -nargs=* -complete=file Rg :call s:Rg(<q-args>)
149 command! -complete=file RgRoot :call s:RgShowRoot()
我在这里完全没有我的深度,特别是考虑到这个错误是通过简单地安装插件产生的;我对基础文件 ( vim-ripgrep.vim
) 进行了 0 次更改。
有没有人在安装 ripgrep 后遇到过类似的慢性错误,如果有,您是如何解决的?