标签:tools 自动 direct 依赖 rds file 新建 插件 dict
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.
mkdir ~/.vim mkidr ~/.vim/tools cd ~/.vim/tools #这里我们也可以自己下载好上传到linux系统中 git clone https://github.com/rkulla/pydiction.git
cp -r ~/.vim/tools/pydiction/after/ ~/.vim
root@www:~/.vim# tree . ├── after │ └── ftplugin │ └── python_pydiction.vim └── tools └── pydiction ├── after │ └── ftplugin │ └── python_pydiction.vim ├── complete-dict ├── pydiction.py ├── README └── README.md
vim ~/.vimrc filetype plugin on let g:pydiction_location = ‘~/.vim/tools/pydiction/complete-dict‘ let g:pydiction_menu_height = 5
标签:tools 自动 direct 依赖 rds file 新建 插件 dict
原文地址:https://www.cnblogs.com/shwang/p/11822898.html