cursive

Issues at: https://git.io/cursive-issues
2021-03-25T04:07:32.090700Z

Hi. When using a dark background with the rainbow parenthesis bundled in Cursive, the dark blue color is difficult to see, it does not contrast enough with the dark background. Could it be possible to make it less dark?

2021-03-25T04:09:30.092Z

(The human eye is more sensitive to contrast of luminosity, less to contrast of colors. Blue is the color we perceive the least)

cfleming 2021-03-25T04:35:02.092100Z

You can configure these at Preferences | Editor | Color Scheme | Clojure

❤️ 1
2021-03-25T04:36:28.092300Z

Super upper cool, thank you ! :sheepy:

2021-03-25T04:37:50.092500Z

#0000FF -> #7070FF

👍 1
2021-03-25T10:11:31.093900Z

when testing, is there any way to open the tooltip or show difference window without having to mouse over the test?

2021-03-25T10:11:57.094200Z

I couldn't find a keyboard shortcut or anything but it might be that I couldn't figure out the name

imre 2021-03-25T10:16:24.094400Z

I don't think there is. See https://github.com/cursive-ide/cursive/issues/2229

2021-03-25T10:20:07.094700Z

ah that's a shame, thanks for the info though

imre 2021-03-25T10:52:32.095Z

There are some related issues on gh and you can also find earlier conversations on this channel, like https://webcache.googleusercontent.com/search?q=cache:LyqrHCeONfkJ:https://clojurians-log.clojureverse.org/cursive/2020-06-23+&cd=4&hl=en&ct=clnk&gl=hu

2021-03-25T11:44:11.095200Z

ahh okay, so you can actually open the tooltip by binding something to view -> error description in intellij at least

2021-03-25T11:44:20.095400Z

but it doesn't show the show difference window

2021-03-25T11:44:23.095600Z

I guess that's something

kenny 2021-03-25T14:33:45.096400Z

You should be able to click the yellow gutter icon to open the diff.

imre 2021-03-25T16:07:40.096800Z

gutter doesn't work when there is more than one failure on the same line, such as when you use clojure.test/are or clojure.template/do-template

😞 1
thelittlesipper 2021-03-25T18:00:53.099900Z

Is there a way to start an nREPL from IntelliJ and have it spin up figwheel-main? I know you can do it with a clojure.main REPL - but why not with an nREPL? I get a “no ack received error” everytime I try

2021-03-25T18:04:30.100200Z

quite possible that you just need to increase the timeout

2021-03-25T18:04:45.100300Z

thelittlesipper 2021-03-25T19:15:52.104Z

Unfortunately that did not do the trick :( What’s weird is that if I delay when I call (fig/start “dev”) - then the nREPL connects just fine. `(thread (Thread/sleep 3000) (fig/start “dev”))`

thelittlesipper 2021-03-25T19:17:32.105300Z

Actually, just running (fig/start “dev”) in a separate thread solved it. No need for the delay.