mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
28 lines
443 B
Text
Executable file
28 lines
443 B
Text
Executable file
# macro
|
|
snippet #macro
|
|
#macro ( ${1:macroName} ${2:\$var1, [\$var2, ...]} )
|
|
${3:## macro code}
|
|
#end
|
|
# foreach
|
|
snippet #foreach
|
|
#foreach ( ${1:\$item} in ${2:\$collection} )
|
|
${3:## foreach code}
|
|
#end
|
|
# if
|
|
snippet #if
|
|
#if ( ${1:true} )
|
|
${0}
|
|
#end
|
|
# if ... else
|
|
snippet #ife
|
|
#if ( ${1:true} )
|
|
${2}
|
|
#else
|
|
${0}
|
|
#end
|
|
#import
|
|
snippet #import
|
|
#import ( "${1:path/to/velocity/format}" )
|
|
# set
|
|
snippet #set
|
|
#set ( $${1:var} = ${0} )
|