Fork me on GitHub
#cursive
<
2019-01-31
>
tanzoniteblack00:01:11

Is it possible to ask cursive to align the args to condp?

odinodin08:01:02

Is there a way to align map values in a selection without having to globally change the code style setting?

cfleming08:01:33

@flowthing @t.denley Yes, I wonder if Cursive should behave more like tools.namespace and properly blow the namespaces away before reloading them.

scarytom10:01:35

Maybe, although you might not want to blow away a namespace a user has been adding to in the repl. In my specific case, just blowing away all the deftests would be ideal.

flowthing10:01:50

The deftests and the namespaces required by the test namespace we're running "Run tests in current NS in REPL" in, I suppose. Although don't know whether that's possible.

cfleming08:01:38

@poppetew Not that I’m aware of. Unfortunately it’s hard to support Unity since IntelliJ has no CLR knowledge, and Rider works in a totally different way to IntelliJ so it would be a large rewrite.

cfleming08:01:55

@tanzoniteblack Not at the moment, sorry.

cfleming08:01:14

@odinodin Also no, sorry, although that’s something that several people have asked for.

scarytom10:01:35

Maybe, although you might not want to blow away a namespace a user has been adding to in the repl. In my specific case, just blowing away all the deftests would be ideal.

nblumoe16:01:01

Hey, is there any way to get output from a form sent to the REPL pasted to the editor other than manually copying it from the REPL. Ideally having a comment added after the form with the return value / output

bherrmann17:01:19

I use this sometimes to copy from a REPL to the cut/paste buffer... saves 1 step. Useful if you build up a big wiki table and need to move it into the wiki via the browser ....

bherrmann17:01:21

(defn to-clipboard [^String jj] (.setContents (.getSystemClipboard (java.awt.Toolkit/getDefaultToolkit)) (java.awt.datatransfer.StringSelection. jj) nil) )