solorice/vscodium/extensions/magicstack.magicpython-1.1.1/snippets/sublime/while.sublime-snippet
2022-04-28 21:17:01 +03:00

10 lines
273 B
XML

<!-- See http://www.sublimetext.com/docs/snippets for more information -->
<snippet>
<tabTrigger>while</tabTrigger>
<scope>source.python</scope>
<description>While Loop</description>
<content><![CDATA[
while ${1:$SELECTION}:
${0:pass}
]]></content>
</snippet>