This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-07-28
Channels
- # admin-announcements (28)
- # beginners (30)
- # boot (6)
- # cljs-dev (48)
- # clojure (72)
- # clojure-android (8)
- # clojure-australia (1)
- # clojure-italy (9)
- # clojure-japan (12)
- # clojure-russia (21)
- # clojure-sg (1)
- # clojurescript (109)
- # core-async (11)
- # core-logic (17)
- # cursive (33)
- # datascript (1)
- # datomic (30)
- # dunaj (4)
- # editors (38)
- # events (1)
- # ldnclj (17)
- # off-topic (156)
- # om (2)
- # overtone (1)
- # re-frame (2)
- # reagent (63)
A day or two ago I had a blue highlight around the REPL panel when my focus was there, but now I can’t seem to get it. Does anyone know what I need to do for that?
dnolen [10:55 AM] @shofetim: I’ve been doing Clojure for 7 years (edited) dnolen [10:55 AM] Cider went through a terrible unstable phase and was behind swank-clojure by 3 years in terms of features dnolen [10:55 AM] never had a debugger that ever worked dnolen [10:56 AM] IntelliJ has world class JavaScript support, Cursive has accurate Clojure debugging, eval in frame, YourKit integration, Node.js standard library indexing, trivial to index Google Closure dnolen [10:56 AM] could go on forever really dnolen [10:56 AM] it makes what I was doing in Emacs look primordial (edited)
The problem is that Webstorm doesn’t provide the Java support that Cursive depends on.
But in v15 there’s a bunch of work going on to make some of the semi-built-in plugins (like Java) more modular, which will mean you’ll probably be able to install a Java plugin (or series of plugins) into Webstorm which will allow Cursive to work there.
JetBrains are interested in doing that to support JRuby in RubyMine, amongst other things.
@cfleming I guess you could use Ultimate - but that seems like a lot of overhead if you are just doing clojure, clojurescript and some frontend stuff
Right, although if you turn off all other plugins what you end up with is pretty much Webstorm.
@cfleming: Hi Colin, is it still looking promising for inline code evaluations (à la Light Table) in the IntelliJ 15 version of Cursive? I’ve been looking at the "noticeable changes" list for the EAP and have been struggling to find a feature that looks like it will help.
@james: I’m not sure, I have to get a hold of the Swing guy at JetBrains. I’ll write to him now and see what he thinks. If not I’m going to investigate at least making the single lines clickable so they pop up a tree view or something.
@cfleming: Cool. I’m looking forward to seeing what he says, and what you’ll come up with.
oh yes the latest cursive update lets me slurp into a pair of double quotes.
@cfleming: should you be able to splice a string into a symbol?
That behaviour surprised me when I did it
@danielcompton: Do you have an example of what you mean?
thing-i-want-in-string “” -> "thing-i-want-in-string"
oops, that was a question for daniel
btw, hey daniel!
[“cursi|ve”]
“Splice sexp”
[cursi|ve]
Hey Joe!
Where I expected
[“cursi|ve”]
“Splice sexp”
“cursi|ve”
I expect the former
string literals are forms
If the caret were positioned at the start of the string (before the quote) you’d get what you expected.
sure, makes sense
just checking, I could see it going either way