Clojure: Move trailing )s onto previous line

This commit is contained in:
Louis Pilfold 2014-12-13 14:20:16 +00:00
parent bf2712e432
commit d70a75bd65

View File

@ -1,7 +1,6 @@
snippet comm
(comment
${0}
)
${0})
snippet condp
(condp ${1:pred} ${2:expr}
${0})
@ -26,8 +25,7 @@ snippet defr
${0})
snippet deft
(deftest ${1:name}
(is (= ${2:assertion}))
${0})
(is (= ${0:assertion})))
snippet is
(is (= ${1} ${0}))
snippet defty