config/sublime/Packages/OCaml/match.sublime-snippet
2012-08-01 21:04:05 -07:00

8 lines
230 B
XML

<snippet>
<content><![CDATA[match ${1:value} with
| ${2:patt} -> ${3:expr}
| ${4:_} -> ${5:expr2}]]></content>
<tabTrigger>match</tabTrigger>
<scope>source.ocaml</scope>
<description>match</description>
</snippet>