关于 vim使用中报错:Error detected while processing /var/lib/vim/addons/plugin/02tlib.vim 的解决方案

升级完ubuntu 后,使用vim命令就会报错:

Error detected while processing /var/lib/vim/addons/plugin/02tlib.vim:
line   77: E1208: -complete used without allowing argumentsPress ENTER or type command to continue
 

分析思路:

尝试了重新安装vim,vim-plug,分析02tlib.vim这些都没有作用。strace看了下vim的执行过程,就是简单的loading 02tlibvim的时候有问题,02tlib.vim本身没啥作用。

解决方案:

删除对应路径下的02tlib.vim 即可。对于我的报错就是:

sudo rm -fr /var/lib/vim/addons/plugin/02tlib.vim

遗留思考:

为什么会这样,感觉ubuntu升级在某些环节还是我自己没搞好。才出现这样的问题,需要进一步确认下

你可能感兴趣的:(vim,ubuntu,linux)