Skip to content

Commit

Permalink
Disable undo in cider-stacktrace buffer
Browse files Browse the repository at this point in the history
Same issue as #1004, huge ex-data from pathom in my case. Dramatic performance improvement.

might be worth doing the same for #2561
  • Loading branch information
nivekuil authored and bbatsov committed Sep 30, 2022
1 parent 101671c commit b8d8de6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cider-stacktrace.el
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ The error types are represented as strings."
(setq-local electric-indent-chars nil)
(setq-local cider-stacktrace-hidden-frame-count 0)
(setq-local cider-stacktrace-filters cider-stacktrace-default-filters)
(setq-local cider-stacktrace-cause-visibility (make-vector 10 0)))
(setq-local cider-stacktrace-cause-visibility (make-vector 10 0))
(buffer-disable-undo))


;; Stacktrace filtering
Expand Down

0 comments on commit b8d8de6

Please sign in to comment.