mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
11 lines
280 B
XML
11 lines
280 B
XML
<!-- See http://www.sublimetext.com/docs/snippets for more information -->
|
|
<snippet>
|
|
<tabTrigger>for</tabTrigger>
|
|
<scope>source.python</scope>
|
|
<description>For Loop</description>
|
|
|
|
<content><![CDATA[
|
|
for ${1:x} in ${2:xrange(1,10)}:
|
|
${0:pass}
|
|
]]></content>
|
|
</snippet> |