confi-emacs-actual/snippets/go-mode/ife
2022-03-29 19:21:13 -04:00

9 lines
135 B
Plaintext

# -*- mode: snippet -*-
# contributor: Seong Yong-ju
# name: if ... { ... } else { ... }
# --
if ${1:condition} {
`%`$2
} else {
$0
}