Files
yasnippet/snippets/ruby-mode/control structure/ife

8 lines
96 B
Plaintext

#name : if ... else ... end
#group : control structure
# --
if ${1:condition}
$2
else
$3
end