Skip to content

Commit c956302

Browse files
committed
Better solution for indentation of forms with meta, add tests
1 parent 7867ed5 commit c956302

File tree

2 files changed

+24
-7
lines changed

2 files changed

+24
-7
lines changed

clojure-ts-mode.el

+6-7
Original file line numberDiff line numberDiff line change
@@ -810,12 +810,11 @@ forms like deftype, defrecord, reify, proxy, etc."
810810
(clojure-ts--match-fn-docstring parent)
811811
(clojure-ts--match-method-docstring parent))))
812812

813-
(defun clojure-ts--match-toplevel-with-meta (_node parent _bol)
814-
"Match NODE when it is toplevel form and it has metadata"
815-
(let* ((grandparent (treesit-node-parent parent)))
816-
(and (string-equal "source" (treesit-node-type grandparent))
817-
(clojure-ts--list-node-p parent)
818-
(treesit-node-child-by-field-name parent "meta"))))
813+
(defun clojure-ts--match-with-meta (node _parent _bol)
814+
"Match NODE when it has metadata"
815+
(let ((prev-sibling (treesit-node-prev-sibling node)))
816+
(and prev-sibling
817+
(string-equal (treesit-node-type prev-sibling) "meta_lit"))))
819818

820819
(defun clojure-ts--semantic-indent-rules ()
821820
"Return a list of indentation rules for `treesit-simple-indent-rules'."
@@ -829,7 +828,7 @@ forms like deftype, defrecord, reify, proxy, etc."
829828
(clojure-ts--match-threading-macro-arg prev-sibling 0)
830829
;; https://guide.clojure.style/#vertically-align-fn-args
831830
(clojure-ts--match-function-call-arg (nth-sibling 2 nil) 0)
832-
(clojure-ts--match-toplevel-with-meta parent 0)
831+
(clojure-ts--match-with-meta parent 0)
833832
;; Literal Sequences
834833
((parent-is "list_lit") parent 1) ;; https://guide.clojure.style/#one-space-indent
835834
((parent-is "vec_lit") parent 1) ;; https://guide.clojure.style/#bindings-alignment

test/indentation.clj

+18
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,21 @@
118118
([a] a)
119119
([a b]
120120
b))})
121+
122+
^:foo
123+
(def a 1)
124+
125+
^{:foo true}
126+
(def b 2)
127+
128+
^{:foo true}
129+
[1 2]
130+
131+
(comment
132+
^{:a 1}
133+
(def a 2))
134+
135+
(defn hinted
136+
(^String [])
137+
(^java.util.List
138+
[a & args]))

0 commit comments

Comments
 (0)