.bin
.config
.local
.ncmpcpp
.oh-my-zsh
.themes
.vim
autoload
bundle
SimpylFold
autoload
doc
ftplugin
python
SimpylFold.vim
cython
plugin
.vintrc.yaml
AUTHORS
LICENSE
README.md
YouCompleteMe
gruvbox
indentpython
vim-template
System
.Xdefaults
.Xresources
.bash_profile
.bashrc
.profile
.vimrc
.xinitrc
.xsessionrc
.zshrc
I keep fucking making these the wrong way and it's going to bite me in the ass. Submodules, self. SUBMODULES. SUBMODULES.
17 lines
426 B
VimL
17 lines
426 B
VimL
if exists('b:loaded_SimpylFold')
|
|
finish
|
|
endif
|
|
let b:loaded_SimpylFold = 1
|
|
|
|
call SimpylFold#BufferInit()
|
|
setlocal foldexpr=SimpylFold#FoldExpr(v:lnum)
|
|
setlocal foldmethod=expr
|
|
|
|
augroup SimpylFold
|
|
autocmd TextChanged,InsertLeave <buffer> call SimpylFold#Recache()
|
|
augroup END
|
|
|
|
if exists('g:SimpylFold_docstring_preview') && g:SimpylFold_docstring_preview
|
|
setlocal foldtext=foldtext()\ .\ SimpylFold#FoldText()
|
|
endif
|