Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Fix a bug in `clojure-ts-add-arity` when body has more than one expression.
- [#120](https://github.com/clojure-emacs/clojure-ts-mode/issues/120): Fix a bug when symbols with metadata were not listed in imenu.
- [#124](https://github.com/clojure-emacs/clojure-ts-mode/issues/124): Correctly indent lists that start with a keyword when using the `fixed` indentation style.
- [#127](https://github.com/clojure-emacs/clojure-ts-mode/issues/127): Fix performance issue for some valid Clojure expressions.

## 0.5.1 (2025-06-17)

Expand Down
3 changes: 1 addition & 2 deletions clojure-ts-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,7 @@ captured including quotes."
((list_lit :anchor [(comment) (meta_lit) (old_meta_lit)] :*
:anchor (sym_lit) @_def_symbol
(list_lit :anchor (sym_lit) (vec_lit) :*
(str_lit (str_content) ,capture-symbol) ,quotes-symbol)
:*)
(str_lit (str_content) ,capture-symbol) ,quotes-symbol))
(:match ,clojure-ts--interface-def-symbol-regexp @_def_symbol)))))

(defconst clojure-ts--match-docstring-query
Expand Down