Skip to content

Commit

Permalink
[Fix clojure-emacs#554] Set cider-auto-select-error-buffer to t by de…
Browse files Browse the repository at this point in the history
…fault
  • Loading branch information
Bozhidar Batsov authored and dgtized committed Jun 24, 2014
1 parent 03e1c94 commit c439ae9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ of negative integers.
loading of jar/zip resources.
* [#589](https://github.com/clojure-emacs/cider/pull/589) Don't prefer local
paths over tramp by default.
* [#554](https://github.com/clojure-emacs/cider/issues/554): `cider-auto-select-error-buffer` is set to `t` by default.

## 0.6.0 / 2014-04-24

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ than the REPL:
(setq cider-repl-popup-stacktraces t)
```

* To auto-select the error buffer when it's displayed:
* To disable auto-selection of the error (stacktrace) buffer when it's displayed:

```el
(setq cider-auto-select-error-buffer t)
(setq cider-auto-select-error-buffer nil)
```

* If using the `wrap-stacktrace` middleware from `cider-nrepl`, error buffer
Expand Down
2 changes: 1 addition & 1 deletion cider-interaction.el
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ in the `cider-error-buffer', which defaults to *cider-error*."
:type 'boolean
:group 'cider)

(defcustom cider-auto-select-error-buffer nil
(defcustom cider-auto-select-error-buffer t
"Controls whether to auto-select the error popup buffer."
:type 'boolean
:group 'cider)
Expand Down

0 comments on commit c439ae9

Please sign in to comment.