more Sublime Text fetures

This commit is contained in:
Bartek Zbytniewski
2025-04-20 10:53:26 +02:00
parent 3ca10fc85a
commit e14db77f26
8 changed files with 300 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
<snippet>
<content><![CDATA[
${1:label} = 0;
loop ${1:label} {
${2:// Your loop code here}
branch_if (${3:condition}): ${1:label};
}
]]></content>
<tabTrigger>loopbr</tabTrigger>
<description>Loop with branch_if</description>
</snippet>