Fork me on GitHub
#vim
<
2022-06-11
>
sheluchin14:06:55

Is there some indent rule or something that will change the indentation on namespace map literals?

;; before
[#:x{:y 1
     :z 2}
 #:x{:y 3
     :z 4}]

;; after
[#:x
 {:y 1
  :z 2}
 #:x
 {:y 3
  :z 4}]