Files
ChocolateyPackages/Sublime/PowerShell/Snippets/(ifelse) if {...} else {...}.sublime-snippet
2013-06-07 14:03:33 -04:00

14 lines
361 B
XML

<!-- See http://www.sublimetext.com/docs/snippets for more information -->
<snippet>
<content><![CDATA[if ($1) {
$2
}
else {
$3
}]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>ifelse</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.powershell</scope>
</snippet>