Fork me on GitHub
#cursive
<
2020-09-03
>
jmv19:09:32

how do i switch my license type over? i used cursive a while back with the non-commercial license but now i'm able to use clojure professionally so i bought the personal license.

cfleming21:09:28

Thanks! You can always register a new licence at Help | Register Cursive…

chrisulloa19:09:12

Is there a Cursive/IntelliJ way of deleting a function across an entire project?

cfleming21:09:28

Hmm, no, I don’t think there’s anything like that, sorry.

👍 3
chrisulloa22:09:56

Thanks for confirming, ended up doing it with some vim regex commands

chrisulloa19:09:21

(foo/some-fn val) -> val

octahedrion20:09:57

one thing I'd like for Cursive to have is for each new REPL to have an easy way to communicate with all the existing open REPLs. Yes, I can do (require '[nrepl.core :as nrepl]) and then eval forms given the right port numbers but I want it all configured for me by default

cfleming21:09:41

Interesting idea, what’s your use case?

octahedrion22:09:42

general everyday REPL use - often I'm working in one REPL, then I open another and find I want to get something I'd computed in the other REPL

octahedrion22:09:27

I want to be able to refer to all the open REPLs like namespaces

octahedrion22:09:00

like repls/0/user/x would refer to var x in the user namespace of the first REPL

octahedrion22:09:06

something like that

octahedrion22:09:45

or have a fn like ns-map repl-map that would return all the information in all the repls