From 06b67db1d5b21a133d53ccbc3e9a13dcfd1ce963 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Sat, 13 Dec 2014 14:15:50 +0000 Subject: [PATCH] Clojure, don't indent with spaces! --- snippets/clojure.snippets | 42 +++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/snippets/clojure.snippets b/snippets/clojure.snippets index dd4e091..ca8abd0 100644 --- a/snippets/clojure.snippets +++ b/snippets/clojure.snippets @@ -1,75 +1,75 @@ snippet comm (comment - ${0} - ) + ${0} + ) snippet condp (condp ${1:pred} ${2:expr} - ${0}) + ${0}) snippet def (def ${0}) snippet defm (defmethod ${1:multifn} "${2:doc-string}" ${3:dispatch-val} [${4:args}] - ${0}) + ${0}) snippet defmm (defmulti ${1:name} "${2:doc-string}" ${0:dispatch-fn}) snippet defma (defmacro ${1:name} "${2:doc-string}" ${0:dispatch-fn}) snippet defn (defn ${1:name} "${2:doc-string}" [${3:arg-list}] - ${0}) + ${0}) snippet defp (defprotocol ${1:name} - ${0}) + ${0}) snippet defr (defrecord ${1:name} [${2:fields}] - ${3:protocol} - ${0}) + ${3:protocol} + ${0}) snippet deft (deftest ${1:name} - (is (= ${2:assertion})) - ${0}) + (is (= ${2:assertion})) + ${0}) snippet is (is (= ${1} ${0})) snippet defty (deftype ${1:Name} [${2:fields}] - ${3:Protocol} - ${0}) + ${3:Protocol} + ${0}) snippet doseq (doseq [${1:elem} ${2:coll}] - ${0}) + ${0}) snippet fn (fn [${1:arg-list}] ${0}) snippet if (if ${1:test-expr} - ${2:then-expr} - ${0:else-expr}) + ${2:then-expr} + ${0:else-expr}) snippet if-let (if-let [${1:result} ${2:test-expr}] (${3:then-expr} $1) (${0:else-expr})) snippet imp (:import [${1:package}]) - & {:keys [${1:keys}] :or {${0:defaults}}} + & {:keys [${1:keys}] :or {${0:defaults}}} snippet let (let [${1:name} ${2:expr}] ${0}) snippet letfn (letfn [(${1:name}) [${2:args}] - ${0})]) + ${0})]) snippet map (map ${1:func} ${0:coll}) snippet mapl (map #(${1:lambda}) ${0:coll}) snippet met (${1:name} [${2:this} ${3:args}] - ${0}) + ${0}) snippet ns (ns ${0:name}) snippet dotimes (dotimes [_ 10] - (time - (dotimes [_ ${1:times}] - ${0}))) + (time + (dotimes [_ ${1:times}] + ${0}))) snippet pmethod (${1:name} [${2:this} ${0:args}]) snippet refer