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 )

 

相关文章:

  • 2021-12-13
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-18
  • 2022-12-23
  • 2022-01-05
  • 2021-09-16
  • 2022-12-23
  • 2021-07-28
  • 2022-01-02
相关资源
相似解决方案