mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 13:33:04 +00:00
13 lines
210 B
Plaintext
13 lines
210 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: ifee
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Conditional if..elsif..else
|
|
# --
|
|
if ($1) {
|
|
${2:# body...}
|
|
} elsif ($3) {
|
|
${4:# elsif...}
|
|
} else {
|
|
${5:# else...}
|
|
}
|