12 lines
125 B
Plaintext
12 lines
125 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: elsif
|
|
# key: ifi
|
|
# --
|
|
if ${1:condition} {
|
|
$2
|
|
} elsif ${3:condition} {
|
|
$4
|
|
} else {
|
|
$5
|
|
}
|