mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-snippets/UltiSnips/vim.snippets

25 lines
646 B
Plaintext
Raw Normal View History

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)
${3:" code}
2012-08-16 23:41:25 -04:00
endf
endsnippet
# vim:ft=snippets: