dotfiles/.emacs.d/snippets/lua-mode/eif

10 lines
96 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: if elseif
# key: eif
# --
if $1 then
$2
elseif $3 then
$0
end