config/sublime/Packages/Groovy/for-in.sublime-snippet
2012-08-01 21:04:05 -07:00

8 lines
224 B
XML

<snippet>
<content><![CDATA[for(${1:element} in ${2:collection}) {
$0
}]]></content>
<tabTrigger>forin</tabTrigger>
<scope>source.groovy</scope>
<description>for(… in …) { … }</description>
</snippet>