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 b8d8de6 commit e75706fCopy full SHA for e75706f
CHANGELOG.md
@@ -9,6 +9,7 @@
9
### Bugs fixed
10
11
- Remove needless quotes from the choices of `cider-jack-in-auto-inject-clojure`
12
+- [#2561](https://github.com/clojure-emacs/cider/issues/2561): Disable undo in `*cider-test-report*` buffers.
13
14
## 1.5.0 (2022-08-24)
15
cider-test.el
@@ -217,7 +217,8 @@ Add to this list to have CIDER recognize additional test defining macros."
217
(when cider-special-mode-truncate-lines
218
(setq-local truncate-lines t))
219
(setq-local sesman-system 'CIDER)
220
- (setq-local electric-indent-chars nil))
+ (setq-local electric-indent-chars nil)
221
+ (buffer-disable-undo))
222
223
;; Report navigation
224
0 commit comments