2014-03-11 16:10:50 -04:00
|
|
|
priority -50
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
###########################################################################
|
|
|
|
# SnipMate Snippets #
|
|
|
|
###########################################################################
|
2014-07-02 07:18:18 -04:00
|
|
|
snippet gvar "Global / configuration variable" b
|
2012-08-16 23:41:25 -04:00
|
|
|
if !exists("g:${1:MyUltraImportantVar}")
|
|
|
|
let g:$1 = ${2:"${3:<tab>}"}
|
|
|
|
endif
|
|
|
|
endsnippet
|
|
|
|
|
2014-07-02 07:18:18 -04:00
|
|
|
snippet guard "script reload guard" b
|
2012-08-16 23:41:25 -04:00
|
|
|
if exists('${1:did_`!p snip.rv = snip.fn.replace('.','_')`}') || &cp${2: || version < 700}
|
|
|
|
finish
|
|
|
|
endif
|
2017-02-11 08:01:38 -05:00
|
|
|
let $1 = 1$3
|
2012-08-16 23:41:25 -04:00
|
|
|
endsnippet
|
|
|
|
|
2014-07-02 07:18:18 -04:00
|
|
|
snippet f "function" b
|
2017-02-11 08:01:38 -05:00
|
|
|
fun ${1:function_name}($2)
|
2014-03-11 16:10:50 -04:00
|
|
|
${3:" code}
|
2012-08-16 23:41:25 -04:00
|
|
|
endf
|
|
|
|
endsnippet
|
|
|
|
# vim:ft=snippets:
|