@@ -764,6 +764,22 @@ Keyboard shortcut | Description
764
764
<kbd >d</kbd > | toggle display of duplicate frames
765
765
<kbd >a</kbd > | toggle display of all frames
766
766
767
+ * Error buffer stacktraces may be filtered by default. Valid filter types
768
+ include ` java ` , ` clj ` , ` repl ` , ` tooling ` , and ` dup ` . Setting this to ` nil ` will
769
+ show all stacktrace frames.
770
+
771
+ ``` el
772
+ (setq cider-stacktrace-default-filters '(tooling dup))
773
+ ```
774
+
775
+ * Error messages may be wrapped for readability. If this value is nil, messages
776
+ will not be wrapped; if it is truthy but non-numeric, the default ` fill-column `
777
+ will be used.
778
+
779
+ ``` el
780
+ (setq cider-stacktrace-fill-column 80)
781
+ ```
782
+
767
783
### Debugging
768
784
769
785
The debugger can be invoked in several ways, the simplest one is to type
@@ -941,23 +957,6 @@ make the hidden buffers visible. They'll always be visible in
941
957
(setq cider-auto-select-error-buffer nil)
942
958
```
943
959
944
- * If using the ` wrap-stacktrace ` middleware from ` cider-nrepl ` , error buffer
945
- stacktraces may be filtered by default. Valid filter types include ` java ` ,
946
- ` clj ` , ` repl ` , ` tooling ` , and ` dup ` . Setting this to ` nil ` will show all
947
- stacktrace frames.
948
-
949
- ``` el
950
- (setq cider-stacktrace-default-filters '(tooling dup))
951
- ```
952
-
953
- * Error messages may be wrapped for readability. If this value is nil, messages
954
- will not be wrapped; if it is truthy but non-numeric, the default ` fill-column `
955
- will be used.
956
-
957
- ``` el
958
- (setq cider-stacktrace-fill-column 80)
959
- ```
960
-
961
960
* Make <kbd >C-c C-z</kbd > switch to the CIDER REPL buffer in the current window:
962
961
963
962
``` el
0 commit comments