Updated plugins

This commit is contained in:
Amir Salihefendic
2018-09-24 21:40:17 -03:00
parent 6bd9eda8c3
commit a6b64938eb
199 changed files with 2897 additions and 980 deletions

View File

@@ -0,0 +1,27 @@
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>