This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-02-16
Channels
- # beginners (7)
- # boot (63)
- # capetown (1)
- # cider (20)
- # clara (15)
- # cljs-dev (5)
- # clojure (195)
- # clojure-austria (2)
- # clojure-dev (46)
- # clojure-dusseldorf (9)
- # clojure-germany (6)
- # clojure-greece (36)
- # clojure-italy (5)
- # clojure-nl (4)
- # clojure-russia (173)
- # clojure-sg (1)
- # clojure-spec (93)
- # clojure-uk (65)
- # clojure-ukraine (2)
- # clojured (9)
- # clojureremote (1)
- # clojurescript (52)
- # core-async (14)
- # core-logic (5)
- # cursive (21)
- # data-science (8)
- # datomic (60)
- # emacs (83)
- # jobs (9)
- # jobs-discuss (7)
- # juxt (6)
- # klipse (2)
- # leiningen (1)
- # lumo (24)
- # mount (4)
- # numerical-computing (1)
- # off-topic (18)
- # om (37)
- # om-next (5)
- # onyx (13)
- # pedestal (1)
- # perun (44)
- # proton (2)
- # rdf (3)
- # re-frame (24)
- # reagent (4)
- # remote-jobs (3)
- # spacemacs (3)
- # testing (6)
- # vim (10)
- # yada (2)
Has there been any solution to the awful namespaced maps printing in the Cursive REPL with clojure 1.9.0? It hurts my eyes to stare at a long list of namespaced maps đ©
@cfleming yes, It doesn't come out. It seems like the print only appear when I execute code in REPL or send code to REPL.
Hi everyone, Iâve uploaded a dev build with some fixes to the stub generation, and more useful logging when things go wrong. If youâve been having problems with it, please give it a try and let me know if it helps.
Go to https://plugins.jetbrains.com/idea/plugin/8090-cursive, and where you see the list of published versions, click on âdevâ. Download a copy of 1.5.0-snapshot2 for the version of IntelliJ youâre using, and install it using Settings->Plugins->Install from DiskâŠ.
If youâre still having problems, go to Help->Debug Log Settings⊠and enter cursive.stubs
into the box. Then reproduce the problem, and send me the log from Help->Show log in Finder/Explorer.
Note that this will send me the classpath from your current project, which will probably include things like the project name in paths etc, and any super-secret deps you might have attached. If thatâs a problem, let me know.
@cfleming Okay, I'll give it a try. Will I still get notified of updates automatically if I do the manual install?
Is it possible to set indentation rules for unrecognized symbols?
the intellij âlightbulbâ helper thing will only show âcreate functionâ as as long as the symbol in the function position is unresolvable
@solussd I don't think so, because it has to index the symbol globally, otherwise it would have to have specific rules for each namespace. if your issue is because the symbol is coming from a macro or something, you can use (declare your-symbol)
so cursive will have some place to point it at
@wilkerlucio my issue was boot
symbols from the implicitly required boot.core namespace. My âfixâ was to explicitly require the symbols and add a symlink to my build.boot file in my src directory.
I'm doing research into Cursive for our company. I've managed to do integrated debugging (e.g., Step Into, Step Over) in Clojure code. Can one do the same kind of debugging in ClojureScript/Figwheel? Thanks!
@hairfire Not yet, unfortunately. I am planning to add that (in a âsometime this yearâ sort of timeframe) but itâs not there yet.