Welcome! Please see the About page for a little more info on how this works.

+1 vote
in Syntax and reader by

Something like {:foo/bar 1} instead of #:foo{:bar 1}
I need to debug some edn and it's impossible to jump to the desired keywords if they're in the short forms.

1 Answer

+1 vote
by
 
Best answer

just found out:

(binding [*print-namespace-maps* false] (pr-str ...))
by
In some repls (but not all), you can also do this as a one-time thing with:

   (set! *print-namespace-maps* false)
...