1
0
Fork 0
dotfiles/sublime/snippets/Go switch.sublime-snippet

14 lines
219 B
Plaintext
Raw Normal View History

2017-10-05 11:25:41 +00:00
<snippet>
<tabTrigger>swi</tabTrigger>
<scope>source.go</scope>
<description>switch statement</description>
<content><![CDATA[
switch ${1:var} {
case ${2:val}
${3}
${4:default:
${5}
\}}
]]></content>
</snippet>