add fun snippet for vim script

This commit is contained in:
jdhao
2020-10-18 20:03:46 +08:00
parent e1c0e607f2
commit c7c8f8a4ec
+6
View File
@@ -0,0 +1,6 @@
snippet fun "vim function"
function! ${1:MyFunc}(${2}) abort
$3
endfunction
$0
endsnippet