mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 21:43:04 +00:00
10 lines
87 B
Plaintext
10 lines
87 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: try
|
|
# key: try
|
|
# --
|
|
try {
|
|
$1
|
|
} catch(error) {
|
|
$0
|
|
}
|