Add vim if snippet

This commit is contained in:
Kenneth Benzie 2016-05-29 21:16:19 +01:00
parent c77fbe9b59
commit af6705736c

View File

@ -4,6 +4,12 @@ function! ${1:name}($2)
endfunction endfunction
endsnippet endsnippet
snippet if "VIM if statement"
if ${1:condition}
$0
endif
endsnippet
snippet py "Python block" b snippet py "Python block" b
python << endpython python << endpython
$0 $0