summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md
index cb3ccadd..c55da953 100644
--- a/README.md
+++ b/README.md
@@ -100,13 +100,19 @@ following snippet:
(setq nrepl-tab-command 'indent-for-tab-command)
```
-* Stop the error buffer from popping up while working in the REPL
-buffer:
+* Stop the error buffer from popping up while working in buffers other
+than the REPL:
```lisp
(setq nrepl-popup-stacktraces nil)
```
+* Enable error buffer popping also in the REPL:
+
+```lisp
+(setq nrepl-popup-stacktraces-in-repl t)
+```
+
* Make <kbd>C-c C-z</kbd> switch to the `*nrepl*` buffer in the current window:
```lisp