12 lines
156 B
Plaintext
12 lines
156 B
Plaintext
snippet function "VIM function"
|
|
function! ${1:name}($2)
|
|
$0
|
|
endfunction
|
|
endsnippet
|
|
|
|
snippet py "Python block" b
|
|
python << endpython
|
|
$0
|
|
endpython
|
|
endsnippet
|