mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
14 lines
285 B
Plaintext
14 lines
285 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: try
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Try Expression
|
|
# --
|
|
try${1: ${2:expression}${3: of
|
|
${4:pattern}${5: when ${6:guard}} ->
|
|
${7:body}}}
|
|
${8:catch
|
|
${9:pattern}${10: when ${11:guard}} ->
|
|
${12:body}}
|
|
${13:after
|
|
${14:body}}
|
|
end |