python_pydiction.vim -- Vim plugin that autocompletes Python code.
complete-dict -- Dictionary file of Python keywords, modules, etc.
pydiction.py -- Python script to add more words to complete-dict.
下载Pydiction
mkdir ~/.vim
cd ~
#这里我们也可以自己下载好上传到linux系统中git clone https://github.com/rkulla/pydiction.git
配置Pydiction
cp -r /root/pydiction/after/ ~/.vim/
新建.vimrc文件
vim ~/.vimrc
在.vimrc文件末尾添加如下配置:
filetype plugin on
let g:pydiction_location = ‘~/.vim/tools/pydiction/complete-dict‘
let g:pydiction_menu_height = 3
到此已经可以使用Tab键自动补全python代码了。
原文:http://blog.51cto.com/853056088/2286313