snippet function "VIM function"
function! ${1:name}($2)
	$0
endfunction
endsnippet

snippet if "VIM if statement"
if ${1:condition}
	$0
endif
endsnippet

snippet py "Python block" b
python << endpython
$0
endpython
endsnippet