Pydiction 可以是我们使用Tab键自动补全Python代码在Vim,是一款非常不错的插件。
Pydiction不需要安装,所有没有任何依赖包问题,Pydiction主要包含三个文件。
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 -p ~/.vim/bundle
cd ~/.vim/bundle
这里我们可以自己下载好上传到linux系统中
git clone https://github.com/rkulla/pydiction.git
配置Pydiction
#- UNIX/LINUX/OSX: Put python_pydiction.vim in ~/.vim/after/ftplugin/
#- WINDOWS: Put python_pydiction.vim in C:\vim\vimfiles\ftplugin\
# Assuming you installed Vim to C:\vim\
cp -r ~/.vim/bundle/pydiction/after/ ~/.vim
新建.vimrc文件
vim ~/.vimrc
在.vimrc文件添加如下配置:
其中第二行是complete-dict文件的目录
filetype plugin on
let g:pydiction_location = '~/.vim/bundle/pydiction-master/complete-dict'
let g:pydiction_menu_height = 3
这个功能是以lib的形式提供的,配置写到home下的.pythonrc文件中, 并设置好环境变量让python启动时执行初始化:
[root@localhost ~]# cat ~/.pythonrc
# ~/.pythonrc
# enable syntax completion
# add the next line to your ~/.bashrc
# export PYTHONSTARTUP=~/.pythonrc
try:
import readline
except ImportError:
print("Module readline not available.")
else:
import rlcompleter
readline.parse_and_bind("tab: complete")
readline.parse_and_bind('''control-l:" "''')
最后一行是绑定control和"L"健,自动补四个空格作缩进。因为tab键已经被征用了,所以只能用其它组合健作缩进
[root@localhost ~]# cat ~/.bashrc
# .bashrc
# User specific aliases and functions
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
export PYTHONSTARTUP=~/.pythonrc
使其生效.
[root@localhost ~]# source ~/.bashrc