標籤:vim
pydiction簡介
pydiction是一段python代碼自動補全的指令碼,它可以實現如下功能:
1、python關鍵字補全
2、函數補全
3、模組補全
4、模組內建函式、變數補全
5、被引入模組的子模組補全
:http://vim.sourceforge.net/scripts/script.php?script_id=850
Vim配置
版本要求:
vim - 7.0以上
pydiction - 1.2以上
[[email protected] ~]# mkdir -p ~/.vim/bundle[[email protected] ~]# mkdir -p ~/.vim/tools/pydiction/[[email protected] ~]# mkdir -p ~/.vim/after/ftplugin[[email protected] ~]# cd ~/.vim/bundle/[[email protected] ~]# git clone https://github.com/rkulla/pydiction.git[[email protected] ~]# cp pydiction/after/ftplugin/python_pydiction.vim ~/.vim/after/ftplugin/[[email protected] ~]# cp pydiction/complete-dict ~/.vim/tools/pydiction/[[email protected] ~]# cat ~/.vimrc # vim設定檔"自動儲存set autowrite"開啟狀態列尺規set ruler "反白當前行set cursorline "文法高亮set syntax=on "取消輸入錯誤提示音set noeb "自動縮排set autoindentset cindent"設定tab寬度為4個空格set tabstop=4set expandtab"統一縮排為4set softtabstop=4set shiftwidth=4"匹配括弧高亮顯示set showmatch"匹配括弧高亮時間(1/10秒)set matchtime=1"pydiction配置filetype plugin onlet g:pydiction_location = ‘~/.vim/tools/pydiction/complete-dict‘let g:pydiction_menu_height = 20
在vim中使用tab鍵就可以自動補全。
650) this.width=650;" src="http://s3.51cto.com/wyfs02/M02/71/6F/wKioL1XQZv6QoSDPAAMgVfNDHnc477.jpg" title="85E70226-844C-4653-89B4-C6F818A4CEE8.png" alt="wKioL1XQZv6QoSDPAAMgVfNDHnc477.jpg" />
參考連結
http://www.pythonclub.org/linux/vim/pydiction
本文出自 “the-way-to-cloud” 部落格,請務必保留此出處http://iceyao.blog.51cto.com/9426658/1685037
Vim - python autocomplete plugin