summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-08-12 08:40:52 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-08-12 08:40:52 +0200
commite24ed41cd1cdf9c9f6fc963328b8ebe5f719172d (patch)
tree74761fcce4b7522f7466ea6ea735944b6d706375
parent5dd1c57b42ff4a23f15edddefd989179e9fc83cc (diff)
Update a few references to the legacy tools.nrepl
-rw-r--r--cider-client.el2
-rw-r--r--cider-debug.el2
-rw-r--r--cider-resolve.el2
-rw-r--r--doc/configuration.md2
-rw-r--r--doc/installation.md2
-rw-r--r--nrepl-client.el2
6 files changed, 6 insertions, 6 deletions
diff --git a/cider-client.el b/cider-client.el
index 038fba2f..1e09bae2 100644
--- a/cider-client.el
+++ b/cider-client.el
@@ -368,7 +368,7 @@ is nil, use `cider-load-file-handler'."
;;; Sync Requests
(defcustom cider-filtered-namespaces-regexps
- '("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl")
+ '("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl" "^nrepl")
"List of regexps used to filter out some vars/symbols/namespaces.
When nil, nothing is filtered out. Otherwise, all namespaces matching any
regexp from this list are dropped out of the \"ns-list\" op. Also,
diff --git a/cider-debug.el b/cider-debug.el
index 9d17e7d7..7ea5b875 100644
--- a/cider-debug.el
+++ b/cider-debug.el
@@ -602,7 +602,7 @@ is a coordinate measure in sexps."
code ns original-id
(if (and line column)
"you edited the code"
- "your tools.nrepl version is older than 0.2.11"))
+ "your nREPL version is older than 0.2.11"))
(save-excursion
(cider--debug-move-point coor)
(point-marker)))))))))
diff --git a/cider-resolve.el b/cider-resolve.el
index eb3ba4f7..3c2dc6fd 100644
--- a/cider-resolve.el
+++ b/cider-resolve.el
@@ -60,7 +60,7 @@
;; (("m" "f")))
;; "wrap-tracker" (dict "arglists"
;; (("handler"))))
-;; "refers" (dict "set-descriptor!" "#'clojure.tools.nrepl.middleware/set-descriptor!"))
+;; "refers" (dict "set-descriptor!" "#'nrepl.middleware/set-descriptor!"))
;;; Code:
diff --git a/doc/configuration.md b/doc/configuration.md
index 4cad2a1d..62ffcacc 100644
--- a/doc/configuration.md
+++ b/doc/configuration.md
@@ -153,7 +153,7 @@ You can hide all nREPL middleware details from `cider-browse-ns*` and `cider-apr
commands by customizing the variable `cider-filter-regexps`. It should be a list of
regexps matching the pattern of namespaces you want to filter out.
-Its default value is `'("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl")`,
+Its default value is `'("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl" "^nrepl")`,
the most commonly used middleware collections/packages.
An important thing to note is that this list of regexps is passed on to the middleware
diff --git a/doc/installation.md b/doc/installation.md
index f295af33..fbb339c4 100644
--- a/doc/installation.md
+++ b/doc/installation.md
@@ -190,7 +190,7 @@ server with CIDER's own nREPL handler.
```clojure
(ns my-app
- (:require [clojure.tools.nrepl.server :as nrepl-server]
+ (:require [nrepl.server :as nrepl-server]
[cider.nrepl :refer (cider-nrepl-handler)]))
(defn -main
diff --git a/nrepl-client.el b/nrepl-client.el
index 591a5cbd..9ed0da20 100644
--- a/nrepl-client.el
+++ b/nrepl-client.el
@@ -809,7 +809,7 @@ the corresponding type of response."
;; Requests can be asynchronous (sent with `nrepl-send-request') or
;; synchronous (send with `nrepl-send-sync-request'). The request is a pair list
;; of operation name and operation parameters. The core operations are described
-;; at https://github.com/clojure/tools.nrepl/blob/master/doc/ops.md. CIDER adds
+;; at https://github.com/nrepl/nrepl/blob/master/doc/ops.md. CIDER adds
;; many more operations through nREPL middleware. See
;; https://github.com/clojure-emacs/cider-nrepl#supplied-nrepl-middleware for
;; the up-to-date list.