首页 > 代码库 > 在Python命令行和VIM中自动补全
在Python命令行和VIM中自动补全
作者:gnuhpc
出处:http://www.cnblogs.com/gnuhpc/
1. VIM下的配置:
wget https://github.com/rkulla/pydiction/archive/master.zip
unzip -q master
mv pydiction-master pydiction
mkdir -p ~/.vim/tools/pydiction
cp -r pydiction/after ~/.vim
cp pydiction/complete-dict ~/.vim/tools/pydiction
rm -f pydiction
确保文件结构如下:
# tree ~/.vim/root/.vim├── after│ └── ftplugin│ └── python_pydiction.vim└── tools └── pydiction └── complete-dict
然后编辑~/.vimrc
# cat ~/.vimrcfiletype plugin onlet g:pydiction_location = ‘~/.vim/tools/pydiction/complete-dict‘
2. Python Console命令行:
# ~/.bashrcexport PYTHONSTARTUP=$HOME/.pythonstartup.py
#vim ~/.pythonstartup.py
try: import readline import rlcompleter import atexit import osexcept ImportError: print "Python shell enhancement modules not available."else: histfile = os.path.join(os.environ["HOME"], ".pythonhistory") import rlcompleter readline.parse_and_bind("tab: complete") if os.path.isfile(histfile): readline.read_history_file(histfile) atexit.register(readline.write_history_file, histfile) del os, histfile, readline, rlcompleter, atexit print "Python shell history and tab completion are enabled."
作者:gnuhpc
出处:http://www.cnblogs.com/gnuhpc/
在Python命令行和VIM中自动补全
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。