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
Copy file name to clipboardexpand all lines: README.md
+18-7
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,9 @@ Keep in mind that the transition to `clojure-ts-mode` won't happen overnight for
87
87
- tools that depend on `clojure-mode` will need to be updated to work with `clojure-ts-mode`
88
88
- we still need to support users of older Emacs versions that don't support Tree-sitter
89
89
90
-
That's why `clojure-ts-mode` is being developed independently of `clojure-mode` and will one day replace it when the time is right. (e.g. 3 major Emacs version down the road, so circa Emacs 32)
90
+
That's why `clojure-ts-mode` is being developed independently of `clojure-mode`
91
+
and will one day replace it when the time is right. (e.g. 3 major Emacs version
92
+
down the road, so circa Emacs 32)
91
93
92
94
You can read more about the vision for `clojure-ts-mode`[here](https://metaredux.com/posts/2023/03/12/clojure-mode-meets-tree-sitter.html).
93
95
@@ -102,6 +104,7 @@ You can read more about the vision for `clojure-ts-mode` [here](https://metaredu
102
104
This package requires Emacs 29 built with tree-sitter support from the [emacs-29 branch](https://git.savannah.gnu.org/cgit/emacs.git/log/?h=emacs-29).
103
105
104
106
If you decide to build Emacs from source there's some useful information on this in the Emacs repository:
@@ -148,11 +151,14 @@ Once installed, evaluate clojure-ts-mode.el and you should be ready to go.
148
151
### Install tree-sitter grammars
149
152
150
153
The compile tree-sitter clojure shared library must be available to Emacs.
151
-
Additionally, the tree-sitter [markdown_inline](https://github.com/MDeiml/tree-sitter-markdown) shared library will also be used for docstrings if available.
If you have `git` and a C compiler (`cc`) available on your system's `PATH`, **then these steps should not be necessary**.
154
-
clojure-ts-mode will install the grammars when you first open a Clojure file and
155
-
`clojure-ts-ensure-grammars` is set to `t` (the default).
158
+
If you have `git` and a C compiler (`cc`) available on your system's `PATH`,
159
+
**then these steps should not be necessary**. clojure-ts-mode will install the
160
+
grammars when you first open a Clojure file and `clojure-ts-ensure-grammars` is
161
+
set to `t` (the default).
156
162
157
163
If clojure-ts-mode fails to automatically install the grammar, you have the option to install it manually.
158
164
@@ -234,9 +240,14 @@ After installing the package do the following.
234
240
235
241
### Does `clojure-ts-mode` work with CIDER?
236
242
237
-
Yes! Preliminary support for `clojure-ts-mode` was released in [CIDER 1.14](https://github.com/clojure-emacs/cider/releases/tag/v1.14.0). Make sure to grab the latest CIDER from MELPA/GitHub. Note that `clojure-mode` is still needed for some APIs that haven't yet been ported to `clojure-ts-mode`.
243
+
Yes! Preliminary support for `clojure-ts-mode` was released in [CIDER
244
+
1.14](https://github.com/clojure-emacs/cider/releases/tag/v1.14.0). Make sure to
245
+
grab the latest CIDER from MELPA/GitHub. Note that `clojure-mode` is still
246
+
needed for some APIs that haven't yet been ported to `clojure-ts-mode`.
238
247
239
-
For now, when you take care of the keybindings for the CIDER commands you use and ensure `cider-mode` is enabled for `clojure-ts-mode` buffers in your config, most functionality should already work:
248
+
For now, when you take care of the keybindings for the CIDER commands you use
249
+
and ensure `cider-mode` is enabled for `clojure-ts-mode` buffers in your config,
0 commit comments