mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
10 lines
272 B
XML
10 lines
272 B
XML
<!-- See http://www.sublimetext.com/docs/snippets for more information -->
|
|
<snippet>
|
|
<tabTrigger>if</tabTrigger>
|
|
<scope>source.python</scope>
|
|
<description>If Condition</description>
|
|
<content><![CDATA[
|
|
if ${1:$SELECTION}:
|
|
${0:pass}
|
|
]]></content>
|
|
</snippet> |