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
+22-14Lines changed: 22 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,9 @@ them. Enter `clojure-ts-mode`, which makes use of Tree-sitter to provide:
23
23
24
24
- fast, accurate and more granular font-locking
25
25
- fast indentation
26
-
- common Emacs functionality like structured navigation, `imenu` (an outline of a source buffer), current form inference (used internally by various Emacs modes and utilities), etc
26
+
- common Emacs functionality like structured navigation, `imenu` (an outline of
27
+
a source buffer), current form inference (used internally by various Emacs
28
+
modes and utilities), etc
27
29
28
30
Working with Tree-sitter is significantly easier than the legacy Emacs APIs for font-locking and
29
31
indentation, which makes it easier to contribute to `clojure-ts-mode`, and to improve it in general.
@@ -156,13 +158,16 @@ Most configuration changes will require reverting any active `clojure-ts-mode` b
156
158
157
159
### Remapping of `clojure-mode` buffers
158
160
159
-
By default, `clojure-ts-mode` assumes command over all buffers and file extensions previously associated with `clojure-mode` (and derived major modes like `clojurescript-mode`). To disable this remapping, set
161
+
By default, `clojure-ts-mode` assumes command over all buffers and file
162
+
extensions previously associated with `clojure-mode` (and derived major modes
163
+
like `clojurescript-mode`). To disable this remapping, set
160
164
161
165
```emacs-lisp
162
166
(setopt clojure-ts-auto-remap nil)
163
167
```
164
168
165
-
You can also use the commands `clojure-ts-activate` / `clojure-ts-deactivate` to interactively change this behavior.
169
+
You can also use the commands `clojure-ts-activate` / `clojure-ts-deactivate` to
170
+
interactively change this behavior.
166
171
167
172
### Indentation
168
173
@@ -297,27 +302,28 @@ highlighted like regular Clojure code.
297
302
298
303
### Highlight markdown syntax in docstrings
299
304
300
-
By default markdown syntax is highlighted in the docstrings using
301
-
`markdown-inline` grammar. To disable this feature set
305
+
By default Markdown syntax is highlighted in the docstrings using
306
+
`markdown-inline` grammar. To disable this feature use:
0 commit comments