1
0
Fork 0
mirror of synced 2024-05-26 20:11:13 -04:00
ultimate-vim/sources_non_forked/vim-snippets/snippets/freemarker.snippets
Amir Salihefendic a6b64938eb Updated plugins
2018-09-24 21:40:17 -03:00

28 lines
313 B
Plaintext

extends html
snippet assign
<#assign ${1} = ${0:${VISUAL}} />
snippet if
<#if ${1}>
${0:${VISUAL}}
</#if>
snippet ife
<#if ${1}>
${2:${VISUAL}}
<#else>
${0}
</#if>
snippet list
<#list ${1} as ${2}>
${0:${VISUAL}}
</#list>
snippet attempt
<#attempt>
${0:${VISUAL}}
<#recover>
</#attempt>