File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 3
3
## main (unreleased)
4
4
5
5
- [ #109 ] ( https://github.com/clojure-emacs/clojure-ts-mode/issues/109 ) : Improve performance by pre-compiling Tree-sitter queries.
6
+ - [ #111 ] ( https://github.com/clojure-emacs/clojure-ts-mode/pull/111 ) : Set ` clojure-ts-completion-at-point-function ` only for ` clojure-ts-mode `
7
+ buffers.
6
8
7
9
## 0.5.0 (2025-06-04)
8
10
21
23
allows highlighting JS syntax in ClojureScript ` js* ` forms.
22
24
- [ #104 ] ( https://github.com/clojure-emacs/clojure-ts-mode/pull/104 ) : Introduce the ` clojure-ts-extra-def-forms ` customization option to specify
23
25
additional ` defn ` -like forms that should be fontified.
24
- - Introduce completion feature and ` clojure-ts-completion-enabled ` customization.
26
+ - [ #108 ] ( https://github.com/clojure-emacs/clojure-ts-mode/pull/108 ) : Introduce completion feature and ` clojure-ts-completion-enabled `
27
+ customization.
25
28
26
29
## 0.4.0 (2025-05-15)
27
30
Original file line number Diff line number Diff line change @@ -2858,7 +2858,8 @@ REGEX-AVAILABLE."
2858
2858
(setq-local treesit-thing-settings clojure-ts--thing-settings))
2859
2859
2860
2860
(when clojure-ts-completion-enabled
2861
- (add-to-list 'completion-at-point-functions #'clojure-ts-completion-at-point-function )))
2861
+ (add-hook 'completion-at-point-functions
2862
+ #'clojure-ts-completion-at-point-function nil 'local )))
2862
2863
2863
2864
;;;### autoload
2864
2865
(define-derived-mode clojure-ts-mode prog-mode " Clojure[TS]"
You can’t perform that action at this time.
0 commit comments