linux系统目录/usr/share/vim/vim74/autoload下列出vim安装完成后自带的一些插件,如果需要启用这些插件需要在~/.vimrc中进行配置,比如:配置python插件启用, 必须保证编译安装 VIM 的时候启用了 Python 特性, 即./configure --with-features=huge --enable-pythoninterp=yes,因为,pythoncomplete.vim 是用 python 写的。.vimrc文件中添加
filetype plugin on
autocmd FileType python set omnifunc=pythoncomplete#Complete
两行配置
时间: 2024-09-30 00:15:34