dotfiles/.emacs.d/snippets/lisp-mode/ifnot

9 lines
131 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: ifnot (...) (...) ...
# key: ifnot
# --
(unless (${1:condition})
(${2:then-do-this}))
$0