summaryrefslogtreecommitdiff
path: root/snippets/emacs-lisp-mode/elisp-ifthen
blob: efe61f830688c19348e2692a1466b5e29b5df1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- mode: snippet -*-
# name: elifthen
# key: >elifthen
# --

(if ($1 condition)
     (progn
		$2 ; if statements
        ; go here
	)
	$2 ; else statements
	; go here
)