Skip to content

Commit e75706f

Browse files
committed
[Fix #2561] Disable undo in *cider-test-report* buffers
1 parent b8d8de6 commit e75706f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Bugs fixed
1010

1111
- 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.
1213

1314
## 1.5.0 (2022-08-24)
1415

cider-test.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,8 @@ Add to this list to have CIDER recognize additional test defining macros."
217217
(when cider-special-mode-truncate-lines
218218
(setq-local truncate-lines t))
219219
(setq-local sesman-system 'CIDER)
220-
(setq-local electric-indent-chars nil))
220+
(setq-local electric-indent-chars nil)
221+
(buffer-disable-undo))
221222

222223
;; Report navigation
223224

0 commit comments

Comments
 (0)