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?
(The human eye is more sensitive to contrast of luminosity, less to contrast of colors. Blue is the color we perceive the least)
You can configure these at Preferences | Editor | Color Scheme | Clojure
Super upper cool, thank you ! :sheepy:
#0000FF
-> #7070FF
when testing, is there any way to open the tooltip or show difference window without having to mouse over the test?
I couldn't find a keyboard shortcut or anything but it might be that I couldn't figure out the name
I don't think there is. See https://github.com/cursive-ide/cursive/issues/2229
ah that's a shame, thanks for the info though
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
ahh okay, so you can actually open the tooltip by binding something to view -> error description
in intellij at least
but it doesn't show the show difference window
I guess that's something
You should be able to click the yellow gutter icon to open the diff.
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
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
quite possible that you just need to increase the timeout
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”))`
Actually, just running (fig/start “dev”)
in a separate thread solved it. No need for the delay.