Fork me on GitHub
#cider
<
2017-04-29
>
lvh02:04:38

Is there a way to get two cider inspectors side by side?

borkdude19:04:50

I have a leiningen project and I want to connect to it from CIDER. cider-jack-in works, but with cider-connect I get:

WARNING: CIDER's version (0.15.0-snapshot) does not match cider-nrepl's version (nil). Things will break!
         More information.
WARNING: clj-refactor and refactor-nrepl are out of sync.
Their versions are 2.3.0-SNAPSHOT (package: 20170428.818) and n/a, respectively.
You can mute this warning by changing cljr-suppress-middleware-warnings.
This is in my profiles.clj:
{:user {:plugins ...
            :repl {:plugins [[cider/cider-nrepl "0.15.0-SNAPSHOT"]
                                     [refactor-nrepl "2.3.0-SNAPSHOT"]]}}}
 
These packages are installed in Emacs:
cider              20170403.402  dependency            Clojure Interactive Development Environment that Rocks  
clj-refactor       20170428.818  installed             A collection of clojure refactoring functions

borkdude19:04:15

With boot and a similar setup it works

richiardiandrea20:04:05

@borkdude do you have cider-nrepl and clj-refactor in your project.clj :dev? You don't need to have it when you jack in but you do need it if you are launching with lein repl

borkdude21:04:28

@richiardiandrea Did you see my profiles.clj? Isn’t that enough anymore?

borkdude21:04:21

Hmm, moving the plugins one up worked. The nesting in my profiles.clj was wrong.