Add some Sublime snippets

This commit is contained in:
2017-10-05 13:25:41 +02:00
parent 8a1c230730
commit eb18b0bcb6
9 changed files with 92 additions and 0 deletions
@@ -0,0 +1,10 @@
<snippet>
<tabTrigger>ife</tabTrigger>
<scope>source.go</scope>
<description>panic on error</description>
<content><![CDATA[
if ${1:err} != nil {
${2:panic}(${1})
}
]]></content>
</snippet>