config/sublime/Packages/D/try-catch.sublime-snippet
2012-08-01 21:04:05 -07:00

10 lines
206 B
XML

<snippet>
<content><![CDATA[try {
$2
} catch (${1:Exception} e) {
$0
}]]></content>
<tabTrigger>tc</tabTrigger>
<scope>source.d</scope>
<description>try … catch</description>
</snippet>