1. pydiction
2. 默认 Vim 7.xx以上版本
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. cd ~/.vim/bundle git clone https://github.com/rkulla/pydiction.git cp ~/.vim/bundle/pydiction/after/ftplugin/python_pydiction.vim ~/.vim/after/ftplugin/python_pydiction.vim filetype plugin on let g:pydiction_location = '/path/to/complete-dict' # for example, if you used Pathogen to install Pydiction, you would set this to: let g:pydiction_location = '/home/user/.vim/bundle/pydiction/complete-dict' # and the dictionary will be available to all of your virtualenv's as well. # You can change the height of the completion menu by setting g:pydiction_menu_height in your vimrc: let g:pydiction_menu_height = 3 ( default : 8 )