We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a092c74 commit 2c0ca62Copy full SHA for 2c0ca62
README.md
@@ -242,6 +242,18 @@ experience.
242
(add-hook 'cider-mode-hook #'eldoc-mode)
243
```
244
245
+* Suppress auto-enabling of `cider-mode` in `clojure-mode` buffers, when starting
246
+ CIDER:
247
+
248
+```el
249
+(setq cider-auto-mode nil)
250
+```
251
252
+By default CIDER will enable `cider-mode` in all `clojure-mode` buffers when the
253
+first CIDER connection is established. It will also add a `clojure-mode` hook to
254
+enable it on newly created `clojure-mode` buffers. The configuration snippet
255
+above allows you to override this (somewhat non-standard) behavior.
256
257
* Log communication with the nREPL server (**extremely useful for debugging CIDER problems**):
258
259
```el
0 commit comments