# -*- mode: snippet -*-
# name: if and elif
# key: ifel
# expand-env: ((yas-indent-line 'fixed))
# group : control structure
# --
_if ${1:cond}
_then
	$2
_elif ${3:cond}
_then
	$0
_endif