mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
15 lines
216 B
Plaintext
15 lines
216 B
Plaintext
snippet fun "vim function"
|
|
function! ${1:MyFunc}(${2}) abort
|
|
$3
|
|
endfunction
|
|
$0
|
|
endsnippet
|
|
|
|
snippet aug "vim augroup" b
|
|
augroup ${1:GROUP_NAME}
|
|
autocmd!
|
|
autocmd ${2:EVENT} ${3:PATTERN} $4
|
|
augroup END
|
|
$0
|
|
endsnippet
|