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 @@

Using Lei
-
:plugins [[cider/cider-nrepl "0.42.1"]]
+
:plugins [[cider/cider-nrepl "0.43.0"]]
@@ -489,7 +489,7 @@

Using Lei

-
{:repl {:plugins [[cider/cider-nrepl "0.42.1"]]}}
+
{:repl {:plugins [[cider/cider-nrepl "0.43.0"]]}}
@@ -531,7 +531,7 @@

Using Boot

(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 @@

Using t

-
  :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"]'

diff --git a/docs/cider/cljs/shadow-cljs.html b/docs/cider/cljs/shadow-cljs.html index 74789620..1c643929 100644 --- a/docs/cider/cljs/shadow-cljs.html +++ b/docs/cider/cljs/shadow-cljs.html @@ -525,7 +525,7 @@

-
 :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

+

Use enrich-classpath for best results

+
+
+

If 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.

+
+
+
+

Configuration

diff --git a/docs/cider/usage/dealing_with_errors.html b/docs/cider/usage/dealing_with_errors.html index 396462bc..2577757e 100644 --- a/docs/cider/usage/dealing_with_errors.html +++ b/docs/cider/usage/dealing_with_errors.html @@ -841,6 +841,42 @@

Limitations

+
+

Inspector integration

+
+
+

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:

+
+
+

Keybindings

+ ++++ + + + + + + + + + + + + +
ActionDescription

click or i or p

Open the given exception in the Inspector.

+
+
+