Add snippet for vim function

This commit is contained in:
Kenneth Benzie 2016-05-25 21:01:21 +01:00
parent 8d793b8a0d
commit 0b7f8ae279

11
UltiSnips/vim.snippets Normal file
View File

@ -0,0 +1,11 @@
snippet function "VIM function"
function! ${1:name}($2)
$0
endfunction
endsnippet
snippet py "Python block" b
python << endpython
$0
endpython
endsnippet