2012-08-16 23:41:25 -04:00
|
|
|
###########################################################################
|
|
|
|
# SnipMate Snippets #
|
|
|
|
###########################################################################
|
|
|
|
snippet header
|
|
|
|
" File: ${1:`!v expand('%:t')`}
|
|
|
|
" Author: ${2:`!v g:snips_author`}
|
|
|
|
" Description: ${3}
|
|
|
|
${4:" Last Modified: `!v strftime("%B %d, %Y")`}
|
|
|
|
|
|
|
|
$0
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet gvar "Global / configuration variable"
|
|
|
|
if !exists("g:${1:MyUltraImportantVar}")
|
|
|
|
let g:$1 = ${2:"${3:<tab>}"}
|
|
|
|
endif
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet guard
|
|
|
|
if exists('${1:did_`!p snip.rv = snip.fn.replace('.','_')`}') || &cp${2: || version < 700}
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let $1 = 1${3}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet f
|
|
|
|
fun ${1:function_name}(${2})
|
2013-07-17 19:06:05 -04:00
|
|
|
${3}
|
2012-08-16 23:41:25 -04:00
|
|
|
endf
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet for
|
2013-07-17 19:06:05 -04:00
|
|
|
for ${1} in ${2}
|
|
|
|
${3}
|
2012-08-16 23:41:25 -04:00
|
|
|
endfor
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet wh
|
2013-07-17 19:06:05 -04:00
|
|
|
while ${1}
|
|
|
|
${2}
|
2012-08-16 23:41:25 -04:00
|
|
|
endw
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet if
|
2013-07-17 19:06:05 -04:00
|
|
|
if ${1}
|
|
|
|
${2}
|
2012-08-16 23:41:25 -04:00
|
|
|
endif
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet ife
|
2013-07-17 19:06:05 -04:00
|
|
|
if ${1}
|
2012-08-16 23:41:25 -04:00
|
|
|
${2}
|
|
|
|
else
|
|
|
|
${3}
|
|
|
|
endif
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
# vim:ft=snippets:
|