summaryrefslogtreecommitdiff
path: root/doc/configuration.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-03-29 23:05:18 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2016-03-29 23:05:18 +0300
commit0485efc6a94f2299016fc8c12b954749c98b514f (patch)
treeafb2d2c82bc4a75efdcd7ee0e6ccdb005a385f46 /doc/configuration.md
parent03ebe325582406e1a656d411f6435a8bd62578dc (diff)
Move some stacktrace-related documentation
Diffstat (limited to 'doc/configuration.md')
-rw-r--r--doc/configuration.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/doc/configuration.md b/doc/configuration.md
index fd7f8d3c..ded4f45c 100644
--- a/doc/configuration.md
+++ b/doc/configuration.md
@@ -69,32 +69,6 @@ make the hidden buffers visible. They'll always be visible in
(setq cider-repl-pop-to-buffer-on-connect nil)
```
-* Configure whether the error buffer with stacktraces should be automatically
- shown on error:
-
- - Don't show on error:
-
- ```el
- (setq cider-show-error-buffer nil)
- ```
-
- Independently of the value of `cider-show-error-buffer`, the error buffer is
- always generated in the background. Use `cider-visit-error-buffer` to visit
- this buffer.
-
- - Selective strategies:
-
- ```el
- (setq cider-show-error-buffer 'except-in-repl) ; or
- (setq cider-show-error-buffer 'only-in-repl)
- ```
-
-* To disable auto-selection of the error buffer when it's displayed:
-
-```el
-(setq cider-auto-select-error-buffer nil)
-```
-
* Make <kbd>C-c C-z</kbd> switch to the CIDER REPL buffer in the current window:
```el