This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-20
Channels
- # admin-announcements (1)
- # beginners (17)
- # boot (22)
- # cider (43)
- # cljs-dev (6)
- # cljsjs (2)
- # clojure (29)
- # clojure-austin (7)
- # clojure-estonia (1)
- # clojure-russia (62)
- # clojure-sg (1)
- # clojurebridge (2)
- # clojured (1)
- # clojurescript (89)
- # datomic (8)
- # hoplon (333)
- # jobs (3)
- # ldnclj (2)
- # leiningen (10)
- # luminus (1)
- # off-topic (9)
- # om (46)
- # proton (4)
- # re-frame (13)
- # reagent (29)
- # yada (11)
@benedek: I forgot I had a .profiles-clj. It's like this {:user {:plugins [[cider/cider-nrepl "0.9.1"] [refactor-nrepl "1.1.0"] ] :dependencies [[org.clojure/tools.nrepl "0.2.7"]] } }
no worries. i tested that the params override profiles which is not working for your case. my guess is that the override did not happen because you had the stuff defined in the user
profile
is there a way to get the cider-test-report buffer to use pjstadig/humane-test-output
? I've added it as an injection in :user
in my profiles.clj
, and i can see that it is loaded when I manually run a test in the REPL, but when I use the cider-test-run-test
command, the output is not formatted.
@catonano: tested this. overriding did not happen because deps/plugins were defined in the :user
profile
no worries, I am adding a section about this to the cider readme so thanks for bringing it up
WARNING: CIDER's version (0.11.0-snapshot) does not match cider-nrepl's version (0.10.2). Things will break!
but I don't see any 0.11 on Clojars
how do I get that version then?
@andrea.crotti: 0.11.0-snapshot is the version of the part of Cider runningn inside Emacs. It's not on Clojars
Yes I know, but the problem is that my emacs package is too new right?
And I would need the equivalent clojure backend package?
@andrea.crotti: it's not "too" new. It's new to the right extent 😉
Ah that might explain another issue as well
Good to know thanks
Also something that got me recently is that if you use clojure 1.6, it will automatically use 10.x cider nrepl, instead of 11
all sorted by the way simplified my lein_profiles.clj as well, great
the only annoying thing maybe is that it means you always need internet access when starting a REPL
if using the snapshot version for the emacs pacakge
you can always make sure that -o
is used i guess so your already retrieved snapshot is used
That was my experience, I had a brand new empty app, no profile dependencies or plugins. With clojure 1.6 it failed with errors, when I switched to 1.7 it worked
The cider readme does say that 10.2 is the last version to support 1.6. That's what made me think to switch clojure versions