You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -22,8 +22,8 @@ Be aware that this isn't the case if you connect to an already running REPL proc
22
22
Add the following, either in your project's `project.clj`, or in the `:user` profile found at `~/.lein/profiles.clj`:
23
23
24
24
```clojure
25
-
:plugins [[refactor-nrepl "2.5.0"]
26
-
[cider/cider-nrepl "0.24.0"]]
25
+
:plugins [[refactor-nrepl "2.5.1"]
26
+
[cider/cider-nrepl "0.25.9"]]
27
27
```
28
28
29
29
### Adding the middleware via Boot
@@ -34,8 +34,8 @@ Add the following in `~/.boot/profile.boot`:
34
34
(require 'boot.repl)
35
35
36
36
(swap! boot.repl/*default-dependencies* conj
37
-
'[refactor-nrepl "2.5.0"]
38
-
'[cider/cider-nrepl "0.24.0"])
37
+
'[refactor-nrepl "2.5.1"]
38
+
'[cider/cider-nrepl "0.25.9"])
39
39
40
40
(swap! boot.repl/*default-middleware* conj
41
41
'refactor-nrepl.middleware/wrap-refactor)
@@ -52,7 +52,7 @@ project, in order to offer various refactorings.
52
52
53
53
Most likely you're already in an environment with a nREPL client available, so you don't have to worry about anything except sending an receiving messages:
54
54
55
-
```cljs
55
+
```clj
56
56
=> (require '[nrepl.core :as repl])
57
57
nil
58
58
=> (with-open [conn (repl/connect:port59258)]
@@ -360,7 +360,7 @@ An extensive changelog is available [here](CHANGELOG.md).
0 commit comments