### Expected: Metadata forms `^:foo` / `^{:foo 123}` should not affect indentation of the following forms ```clojure [a b [c ^:foo d e]] ``` ### Actual: ```clj ;; with clojure-ts-indent-style = 'semantic [a b [c ^:foo d e]] ;; with clojure-ts-indent-style = 'fixed [a b [c ^:foo d e]] ``` --- Some font-locking of the following form also appears to be affected:  --- Typing a closing delimiter with Paredit (`paredit-close-curly`) can also cause the point to jump to the wrong position: ```clj ;; ↓with point here, type "}" [a ^{ } (b) c] ;; | | ;; | actual ;; expected ```