This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-10-03
Channels
- # aleph (5)
- # announcements (4)
- # babashka (2)
- # beginners (52)
- # calva (13)
- # cider (60)
- # clj-kondo (91)
- # cljsrn (6)
- # clojure (93)
- # clojure-brasil (2)
- # clojure-dev (37)
- # clojure-europe (5)
- # clojure-italy (7)
- # clojure-nl (8)
- # clojure-norway (1)
- # clojure-sg (1)
- # clojure-spec (115)
- # clojure-uk (31)
- # clojurescript (32)
- # cursive (35)
- # data-science (4)
- # datascript (3)
- # datomic (29)
- # emacs (8)
- # events (1)
- # figwheel (1)
- # funcool (2)
- # graalvm (2)
- # joker (12)
- # kaocha (4)
- # lein-figwheel (1)
- # leiningen (34)
- # malli (7)
- # off-topic (4)
- # overtone (1)
- # parinfer (2)
- # pathom (5)
- # quil (1)
- # re-frame (12)
- # reagent (2)
- # shadow-cljs (7)
- # spacemacs (6)
- # sql (8)
- # tools-deps (63)
- # vim (24)
FYI - I plan to cut a new CIDER release over the weekend. If someone wants to get some fixes in - now would be the time to do so. 🙂
If I throw ex-info with some data assigned to it, should CIDER show the ex-data somehow in the *cider-error*
buffer? I'm still in cider 0.21.0 btw.
Hi, will the clojurescript project size affect the completion speed? I feel like the completion in my project is a little bit slow. But it's just 6k lines of clojurescript.
@doglooksgood Did this slowdown begin with CIDER 0.22? Might be something to do with the new cljs completion we employ there.
maybe, but I'm not sure. I see there's a new option to disable the enhancement cljs completion.
I don’t recall any changes to cider-find-var
recently. What exactly is broken for you?
don't need everything. its just a series of requests and responses. so find the requests that interest you. i think op will be "find-var" maybe?
(-->
id "10"
op "eldoc"
session "b51c61f3-0280-4ed9-8a48-fa9807d4e826"
time-stamp "2019-10-03 23:18:33.774739750"
ns "cat-lotto.core"
symbol "cache/api-cache"
)
(-->
id "11"
op "eldoc"
session "b51c61f3-0280-4ed9-8a48-fa9807d4e826"
time-stamp "2019-10-03 23:18:33.847791097"
ns "cat-lotto.core"
symbol "mount/start"
)
(<--
id "9"
session "b51c61f3-0280-4ed9-8a48-fa9807d4e826"
time-stamp "2019-10-03 23:18:33.940008113"
err "ERROR: Unhandled REPL handler exception processing message {:op eldoc, :ns cat-lotto.core, :symbol mount/start, :session b51c61f3-0280-4ed9-8a48-fa9807d4e826, :id 11}
"
)
(<--
id "9"
session "b51c61f3-0280-4ed9-8a48-fa9807d4e826"
time-stamp "2019-10-03 23:18:33.959079063"
err "ERROR: java.lang.RuntimeException: EOF while readingUnhandled REPL handler exception processing message
{:op eldoc, :ns cat-lotto.core, :symbol cache/api-cache, :session at clojure.lang.Util.runtimeException(Util.java:221) b51c61f3-0280-4ed9-8a48-fa9807d4e826, :id 10}
"
)
I think this is it@doglooksgood Seems your clojuredocs cache is corrupted.
No, it’s something like clojuredocs-export.edn
. Don’t recall the exact file name.
@bozhidar that file export.edn
in my case is not finished. It ends with something like:
{:added "1.0",
:ns "clojure.core",
:name "some",
:file "clojure/core.clj",
:static true,
:type "function",
:column 1,
:see-alsos
[:clojure.core/every?
:clojure.core/not-any?
:clojure.core/keep
:clojure.core/ke
Hi cider lovers. I sometimes have a clojure test suite where i just want to run the "tests" at a "testing" point and all their children. e.g
deftest
testing
testing <--------- run this
is awesome
is really awesome
testing <--------- not this
is fail
i'm skimming the docs and the way to do this isn't jumping out at me. I know i can comment the code out, is there another way 🙂@drewverlee I think this can’t be done, as what CIDER does internally is run the function created by the deftest
macro.
Ah ok. Thanks, at least i was right about the commands i was seeing. I had a bit of a head scratchier for a moment because i thought i was targeting a testing tree and i was actually getting everything in the macro 😖