summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--cider-selector.el4
2 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 57356b0e..e1032aec 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## master
+### New features
+
* [#537](https://github.com/clojure-emacs/cider/pull/537) New support for
Java symbol lookup from cider-nrepl's info middleware.
* [#570](https://github.com/clojure-emacs/cider/pull/570) Enable toggling
@@ -9,6 +11,7 @@ of the 'all' filter on stacktraces.
* [#588](https://github.com/clojure-emacs/cider/pull/588) New `doc-mode`
for presenting fontified documentation, including Javadoc.
* New interactive command `cider-toggle-trace`.
+* `cider-select` can now switch to the `*cider-error*` buffer (bound to `x`).
### Changes
diff --git a/cider-selector.el b/cider-selector.el
index 97a7c745..11e08d7a 100644
--- a/cider-selector.el
+++ b/cider-selector.el
@@ -146,6 +146,10 @@ is chosen. The returned buffer is selected with
"*nrepl-messages* buffer."
nrepl-message-buffer-name)
+(def-cider-selector-method ?x
+ "*cider-error* buffer."
+ cider-error-buffer)
+
(def-cider-selector-method ?s
"Cycle to the next CIDER connection's REPL."
(cider-rotate-connection)