Fork me on GitHub
#cursive
<
2018-10-06
>
Azzurite17:10:00

I'm reading my (windows) environment properties into a map. The properties contain names with parenthesis, which are converted to keys. In the nREPL in Cursive those keywords with parenthesis are printed wrongly when I print the env map: https://i.imgur.com/VyjRawd.png

Azzurite17:10:13

however, I then wanted to try to reproduce it with another function of my own, but it doesn't even highlight the output at all: https://i.imgur.com/Sei5tqe.png

Azzurite17:10:37

is this a "feature" of the REPL with Cursive?

Azzurite17:10:14

I'm very new to clojure and using the luminus template

joelsanchez18:10:06

keywords and symbols can't contain parentheses for obvious reasons, but keyword will allow them anyway, that's why this is possible

joelsanchez18:10:22

try evaluating :hey) and then (keyword "hey)") to see what I mean