This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-04-06
Channels
- # beginners (95)
- # boot (3)
- # cider (13)
- # cljs-dev (9)
- # cljsjs (1)
- # cljsrn (35)
- # clojure (78)
- # clojure-dev (5)
- # clojure-italy (6)
- # clojure-nl (9)
- # clojure-russia (13)
- # clojure-spec (1)
- # clojure-uk (74)
- # clojurescript (59)
- # community-development (6)
- # core-async (41)
- # css (110)
- # data-science (2)
- # datomic (22)
- # defnpodcast (1)
- # devcards (1)
- # docs (1)
- # editors (6)
- # emacs (51)
- # figwheel (1)
- # fulcro (66)
- # jobs (1)
- # jobs-discuss (75)
- # lumo (51)
- # mount (2)
- # off-topic (33)
- # pedestal (24)
- # proton (3)
- # re-frame (29)
- # reagent (92)
- # reitit (16)
- # shadow-cljs (16)
- # spacemacs (4)
- # specter (6)
- # vim (6)
- # yada (7)
Trying to use cider-connect
to connect to a remote machine, get WARNING: CIDER's version (0.16.0) does not match cider-nrepl's version (nil). Things will break!
Add :plugins [[cider/cider-nrepl "0.16.0"]]
to dev profile.
Get WARNING: CIDER's version (0.16.0) does not match cider-nrepl's version (0.15.1). Things will break!
Yes. Obviously first lein
starts the REPL with its own value and afterwards CIDER overrides this with its value.
@bbss I guess you should take a look at the dependency graph of your project. Likely something else pulls an older version of cider-nrepl
(e.g. refactor-nrepl
).
@dominicm I don’t think that’s going to be that big of a deal - we’ll likely just cut the new releases simultaneously, but obviously that’s going to introduce a bit of pain for a while (until all tools switch to the new nREPL). On the bright side - their API are going to be the same, so for a while things are going to work the same with both.
i’m looking at the clojure-mode & cider’s indent rules and I’m struggling to see the difference between the two below:
(defprotocol '(1 (:defn)))
(extend-protocol '(1 :defn))
According to the docs, An integer or a keyword x, which is shorthand for the list [x].
, so are the two rules equivalent?oops wrong forum