mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
11 lines
231 B
Plaintext
11 lines
231 B
Plaintext
snippet for "ejs for loop" b
|
|
<% for (let ${1:i = 0}; ${2:i<arr.length}; ${3:i++}) { %>
|
|
${0:body}
|
|
<% } %>
|
|
endsnippet
|
|
snippet forE "ejs for Each loop" b
|
|
<% ${1:array}.forEach((${2:single var}) => { %>
|
|
${0:body}
|
|
<% }) %>
|
|
endsnippet
|