9 lines
131 B
Plaintext
9 lines
131 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: ifnot (...) (...) ...
|
||
|
# key: ifnot
|
||
|
# --
|
||
|
|
||
|
(unless (${1:condition})
|
||
|
(${2:then-do-this}))
|
||
|
$0
|