You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Update `.dir-locals.el` in all of your clojure projects to activate directory local variables in clojure-ts-mode.
206
+
207
+
example:
208
+
```emacs-lisp
209
+
((clojure-mode
210
+
(cider-clojure-cli-aliases . ":test:repl"))
211
+
(clojure-ts-mode
212
+
(cider-clojure-cli-aliases . ":test:repl")))
213
+
```
214
+
183
215
## Frequently Asked Questions
184
216
185
217
### Does `clojure-ts-mode` work with CIDER?
186
218
187
-
Not yet out of the box, but that [should change soon](https://github.com/clojure-emacs/cider/pull/3461). Feel free to help out with the remaining work, so we can expedite the process.
219
+
~~Not yet out of the box, but that [should change soon](https://github.com/clojure-emacs/cider/pull/3461). Feel free to help out with the remaining work, so we can expedite the process.~~
220
+
221
+
Support for clojure-ts-mode has landed on the master branch. Make sure to grab the latest cider from melpa/github.
188
222
189
223
For now, when you take care of the keybindings for the cider functions you use and ensure `cider-mode` is enabled for `clojure-ts-mode` buffers in your config, most functionality should already work:
0 commit comments