Created
October 23, 2013 07:29
-
-
Save redswallow/7114021 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##plugin | |
###python_fold http://www.vim.org/scripts/script.php?script_id=515 | |
zo: 打开光标位置的折叠代码 | |
zc: 折叠光标位置的代码 | |
zr: 将文件中所有折叠的代码打开 | |
zm: 将文件中所有打开的代码折叠 | |
zR: 作用和 zr 类似,但会打开子折叠(折叠中的折叠) | |
zM: 作用和 zm 类似,但会关闭子折叠 | |
zi: 折叠与打开操作之间的切换命令 | |
###开启Python自动补全支持 | |
autocmd FileType python set omnifunc=pythoncomplete#Complete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment