calva

Wednesdays you might find @U0ETXRFEW in the Gather Calva space. Invite is https://gather.town/invite?token=GZqrm7CR and the password is `Be kind`.
bringe 2021-06-16T01:38:39.264800Z

Thank you as well

👍 1
maxp 2021-06-16T10:05:36.265500Z

That looks like as a bug in printer

{(keyword "a b") :c :d :e}
  ;; => {:a b, :c :d, :e}

pez 2021-06-17T15:54:47.268Z

Yeah, works when I do it as well. In the REPL window, inline and also Evaluate to comment:

{(keyword "a b") :c :d :e}
;; => {:a b :c, :d :e}

pez 2021-06-17T15:56:50.268200Z

If you can use Jack-in, @maxp, can you try with that and disabling the :repl alias in your deps.edn, just to see if that could have anything to do with it. (It shouldn’t but with strange things like this, I start to question everything. 😃

pez 2021-06-17T15:59:17.268400Z

You can also try with the command Start a standalone REPL. Maybe that can narrow it down a bit.

Tero Matinlassi 2021-06-16T10:17:07.265600Z

Works for me.Probably not Calva related?

Tero Matinlassi 2021-06-16T10:20:57.265800Z

Which REPL you are using?

alexmiller 2021-06-16T11:03:40.266400Z

This is the expected behavior

alexmiller 2021-06-16T11:04:36.266700Z

https://clojure.org/guides/faq#unreadable_keywords

maxp 2021-06-16T12:12:11.266900Z

the same in clj

Clojure 1.10.3
user=> (keyword "a b")
:a b
user=> {(keyword "a b") :c}
{:a b :c}
user=> {(keyword "a b") :c :d :e}
{:a b :c, :d :e}

maxp 2021-06-16T12:18:08.267200Z

fragment from deps.edn

:nrepl
    { :extra-deps
      { nrepl/nrepl                 {:mvn/version "0.8.3"}
        cider/cider-nrepl           {:mvn/version "0.26.0"}}
      :main-opts 
      ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
    ;
Calva 2.0.200 connected to that nrepl