Skip to content

Commit e24ed41

Browse files
committed
Update a few references to the legacy tools.nrepl
1 parent 5dd1c57 commit e24ed41

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

cider-client.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ is nil, use `cider-load-file-handler'."
368368
;;; Sync Requests
369369

370370
(defcustom cider-filtered-namespaces-regexps
371-
'("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl")
371+
'("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl" "^nrepl")
372372
"List of regexps used to filter out some vars/symbols/namespaces.
373373
When nil, nothing is filtered out. Otherwise, all namespaces matching any
374374
regexp from this list are dropped out of the \"ns-list\" op. Also,

cider-debug.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ is a coordinate measure in sexps."
602602
code ns original-id
603603
(if (and line column)
604604
"you edited the code"
605-
"your tools.nrepl version is older than 0.2.11"))
605+
"your nREPL version is older than 0.2.11"))
606606
(save-excursion
607607
(cider--debug-move-point coor)
608608
(point-marker)))))))))

cider-resolve.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
;; (("m" "f")))
6161
;; "wrap-tracker" (dict "arglists"
6262
;; (("handler"))))
63-
;; "refers" (dict "set-descriptor!" "#'clojure.tools.nrepl.middleware/set-descriptor!"))
63+
;; "refers" (dict "set-descriptor!" "#'nrepl.middleware/set-descriptor!"))
6464

6565
;;; Code:
6666

doc/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ You can hide all nREPL middleware details from `cider-browse-ns*` and `cider-apr
153153
commands by customizing the variable `cider-filter-regexps`. It should be a list of
154154
regexps matching the pattern of namespaces you want to filter out.
155155

156-
Its default value is `'("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl")`,
156+
Its default value is `'("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl" "^nrepl")`,
157157
the most commonly used middleware collections/packages.
158158

159159
An important thing to note is that this list of regexps is passed on to the middleware

doc/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ server with CIDER's own nREPL handler.
190190

191191
```clojure
192192
(ns my-app
193-
(:require [clojure.tools.nrepl.server :as nrepl-server]
193+
(:require [nrepl.server :as nrepl-server]
194194
[cider.nrepl :refer (cider-nrepl-handler)]))
195195

196196
(defn -main

nrepl-client.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ the corresponding type of response."
809809
;; Requests can be asynchronous (sent with `nrepl-send-request') or
810810
;; synchronous (send with `nrepl-send-sync-request'). The request is a pair list
811811
;; of operation name and operation parameters. The core operations are described
812-
;; at https://github.com/clojure/tools.nrepl/blob/master/doc/ops.md. CIDER adds
812+
;; at https://github.com/nrepl/nrepl/blob/master/doc/ops.md. CIDER adds
813813
;; many more operations through nREPL middleware. See
814814
;; https://github.com/clojure-emacs/cider-nrepl#supplied-nrepl-middleware for
815815
;; the up-to-date list.

0 commit comments

Comments
 (0)