Fork me on GitHub
#cursive
<
2015-08-01
>
Paco03:08:37

oh ok I guess I will have to work around it for now

danielcompton03:08:52

@kidpollo: I think you could just start a REPl at the terminal and then attach to it with Cursive?

danielcompton04:08:39

Are cljs docstrings supported in Cursive? I couldn’t find any issues about it, does this work for other people?

cfleming12:08:50

@kidpollo: There’s no good solution for that right now, sorry - there should be very soon, though

cfleming12:08:44

If you only need the profiles when running the REPL, then the best solution is to run the REPL using lein repl :headless and connect to it with a Remote REPL run configuration.

cfleming12:08:05

Unfortunately there’s no good way to sync deps from other profiles to Cursive though.

cfleming12:08:23

i.e. to have those dependencies available in the editor.

Steve Peterson13:08:43

How to clear the REPL in Cursive (remove temporary vars from the current namespace)? I've found this snippet on StackOverflow: (map #(ns-unmap *ns* %) (keys (ns-interns *ns*))) - can I map it to a shortcut in Cursive REPL?

Paco16:08:58

thanks @cfleming great work!

cfleming20:08:34

@stevep: Unfortunately you can’t right now, there’s an issue I’m hoping to get to soon: https://github.com/cursiveclojure/cursive/issues/85

cfleming20:08:49

@danielcompton: Yes, they are. I suspect that your problem is https://github.com/cursiveclojure/cursive/issues/995 - if a symbol resolves to two other symbols, the doc isn’t shown. I haven’t figured out how to make IntelliJ show a popup to choose from in that case.

danielcompton21:08:08

@cfleming: you could just show a message in the doc window saying that two symbols were resolved to this, not sure which to pick