mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
8 lines
126 B
Plaintext
8 lines
126 B
Plaintext
#name : eval { ... } if ($@) { ... }
|
|
# --
|
|
eval {
|
|
${1:# do something risky...}
|
|
};
|
|
if (\$@) {
|
|
${2:# handle failure...}
|
|
} |