diff --git a/clj/resources/indent-test-cases/with/in.clj b/clj/resources/indent-test-cases/with/in.clj index c307037..993a33d 100644 --- a/clj/resources/indent-test-cases/with/in.clj +++ b/clj/resources/indent-test-cases/with/in.clj @@ -2,10 +2,10 @@ (slurp f)) (with-meta obj - {:foo 1}) + {:foo 1}) (with-meta - obj + obj {:foo 1}) (with-out-str diff --git a/clj/resources/indent-test-cases/with/out.clj b/clj/resources/indent-test-cases/with/out.clj index 48edfef..7ce749d 100644 --- a/clj/resources/indent-test-cases/with/out.clj +++ b/clj/resources/indent-test-cases/with/out.clj @@ -2,11 +2,11 @@ (slurp f)) (with-meta obj - {:foo 1}) + {:foo 1}) (with-meta - obj - {:foo 1}) + obj + {:foo 1}) (with-out-str ()) diff --git a/indent/clojure.vim b/indent/clojure.vim index ecd952e..09764b6 100644 --- a/indent/clojure.vim +++ b/indent/clojure.vim @@ -35,9 +35,7 @@ endfunction call s:SConf('clojure_indent_style', 'standard') call s:SConf('clojure_indent_multiline_strings', 'standard') -call s:SConf('clojure_fuzzy_indent_patterns', [ -\ '\m^def', '\m^let', '\m^with-\%(meta\|in-str\|out-str\|loading-context\)\@!' -\ ]) +call s:SConf('clojure_fuzzy_indent_patterns', ['\m^def', '\m^let', '\m^with-']) " FIXME: reader conditional indentation?