summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2013-02-10 03:12:17 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2013-02-10 03:13:14 +0100
commit6bd9ec3187b9498bae7dbdc1bb406d26fb32883b (patch)
tree7f6356c668ba1730db60927713a7277a5f6f6d25
parent78da3e9514ebf7325a52a13d8e81aff47575ae81 (diff)
CHANGELOG and README entries for nrepl-popup-stacktraces-in-repl
-rw-r--r--CHANGELOG.md1
-rw-r--r--README.md10
2 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 83f7e3a2..0d312b9a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@
* Added a check for the presence of an existing `*nrepl*` buffer before
creating a new one with `nrepl-jack-in` or `nrepl`.
* `M-.` learned about namespaces.
+* Added new customization variable `nrepl-popup-stacktraces-in-repl`.
### Bugs fixed
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