:plugins [[cider/cider-nrepl "0.42.1"]]
+:plugins [[cider/cider-nrepl "0.43.0"]]
diff --git a/docs/cider/basics/middleware_setup.html b/docs/cider/basics/middleware_setup.html index 020b6c89..9c495fe4 100644 --- a/docs/cider/basics/middleware_setup.html +++ b/docs/cider/basics/middleware_setup.html @@ -481,7 +481,7 @@
:plugins [[cider/cider-nrepl "0.42.1"]]
+:plugins [[cider/cider-nrepl "0.43.0"]]
{:repl {:plugins [[cider/cider-nrepl "0.42.1"]]}}
+{:repl {:plugins [[cider/cider-nrepl "0.43.0"]]}}
(require 'boot.repl)
(swap! boot.repl/*default-dependencies*
- concat '[[cider/cider-nrepl "0.42.1"]])
+ concat '[[cider/cider-nrepl "0.43.0"]])
(swap! boot.repl/*default-middleware*
conj 'cider.nrepl/cider-middleware)
@@ -551,11 +551,11 @@ :cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.42.1"}}
+ :cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.43.0"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:cider-cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.339"}
- cider/cider-nrepl {:mvn/version "0.42.1"}
+ cider/cider-nrepl {:mvn/version "0.43.0"}
cider/piggieback {:mvn/version "0.5.3"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware"
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}
@@ -595,7 +595,7 @@ Using Gradle
dependencies {
devImplementation 'nrepl:nrepl:0.9.0'
- devImplementation 'cider:cider-nrepl:0.42.1'
+ devImplementation 'cider:cider-nrepl:0.43.0'
}
tasks.named('clojureRepl') {
diff --git a/docs/cider/basics/up_and_running.html b/docs/cider/basics/up_and_running.html
index 19354136..75b3dcff 100644
--- a/docs/cider/basics/up_and_running.html
+++ b/docs/cider/basics/up_and_running.html
@@ -543,7 +543,7 @@
-$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.42.1"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
+$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.43.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
:dependencies [[cider/cider-nrepl "0.42.1"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
+ :dependencies [[cider/cider-nrepl "0.43.0"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
[refactor-nrepl/refactor-nrepl "3.9.0"]] ;; refactor-nrepl is optional
:nrepl {:middleware [cider.nrepl/cider-middleware ;; it's advisable to explicitly add this middleware. It's automatically added by shadow-cljs (if available in the classpath), unless `:nrepl {:cider false}`
diff --git a/docs/cider/cljs/up_and_running.html b/docs/cider/cljs/up_and_running.html
index 902b9079..7be56db4 100644
--- a/docs/cider/cljs/up_and_running.html
+++ b/docs/cider/cljs/up_and_running.html
@@ -482,7 +482,7 @@
dependencies {
devImplementation 'nrepl:nrepl:0.9.0'
- devImplementation 'cider:cider-nrepl:0.42.1'
+ devImplementation 'cider:cider-nrepl:0.43.0'
devImplementation 'cider:cider-piggieback:0.5.3'
}
diff --git a/docs/cider/debugging/inspector.html b/docs/cider/debugging/inspector.html
index 7fd13b48..6928229e 100644
--- a/docs/cider/debugging/inspector.html
+++ b/docs/cider/debugging/inspector.html
@@ -509,12 +509,12 @@ Usage
Refresh the inspector (e.g. if viewing an atom/ref/agent)
-SPC
+SPC or Next
cider-inspector-next-page
Jump to next page in paginated view
-M-SPC
+M-SPC or Prev
cider-inspector-prev-page
Jump to previous page in paginated view
@@ -558,6 +558,15 @@ Usage
enrich-classpath
for best resultsIf enrich-classpath is activated, inspecting a Java class, method or field +will richly display its Java doc comment documentation at the bottom of the inspector.
+Within cider-error
, when clicking directly a top-level exception (any of them in the cause chain),
+that specific exception will be inspected with the CIDER Inspector.
This allows you to better understand intrincate ex-data
.
This clicking is defined and customizable in cider-stacktrace-exception-map
, which has the following defaults: