File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 35
35
36
36
### Bugs fixed
37
37
38
- - ` cider-find-keyword ` doesn't work with ` clojure-ts-mode ` .
38
+ - [ #3779 ] ( https://github.com/clojure-emacs/cider/pull/3779 ) : ` cider-find-keyword ` doesn't work with ` clojure-ts-mode ` .
39
+ - [ #3791 ] ( https://github.com/clojure-emacs/cider/issues/3791 ) : Missing font lock when ` cider-font-lock-dynamically ` is enabled
40
+ for ` clojure-ts-mode ` .
39
41
40
42
## 1.17.1 (2025-02-25)
41
43
Original file line number Diff line number Diff line change @@ -982,7 +982,12 @@ before point."
982
982
(not (eq (char-after ) ?\( )))
983
983
(condition-case nil
984
984
(progn (backward-up-list ) t )
985
- (scan-error nil ))))
985
+ (scan-error nil )
986
+ ; ; In `clojure-ts-mode' , when `backward-up-list' is used,
987
+ ; ; `user-error' is signaled instead of `scan-error' because
988
+ ; ; the operation is delegated to the `treesit-up-list'
989
+ ; ; function.
990
+ (user-error nil ))))
986
991
(setq beg (min beg (point )))
987
992
; ; If there are locals above the current sexp, reapply them to the
988
993
; ; current sexp.
You can’t perform that action at this time.
0 commit comments