Skip to content

Instantly share code, notes, and snippets.

@jarcoal
jarcoal / GoAssertEqErr.sublime-snippet
Last active October 23, 2022 02:13
Golang Sublime Snippets
<snippet>
<content><![CDATA[
assert.Equal(t, ${1:err}, nil)
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>aerr</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.go</scope>
</snippet>