This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-08-16
Channels
- # announcements (3)
- # babashka (48)
- # beginners (35)
- # calva (3)
- # chlorine-clover (5)
- # clj-kondo (9)
- # cljdoc (20)
- # cljsrn (1)
- # clojure (55)
- # clojure-europe (33)
- # clojure-nl (3)
- # clojure-norway (6)
- # clojure-spec (7)
- # clojure-uk (27)
- # clojurescript (95)
- # closh (1)
- # conjure (1)
- # cursive (16)
- # datomic (30)
- # emacs (7)
- # honeysql (1)
- # hugsql (2)
- # introduce-yourself (2)
- # jobs (1)
- # lsp (30)
- # malli (22)
- # nbb (11)
- # news-and-articles (1)
- # off-topic (8)
- # pathom (21)
- # polylith (39)
- # portal (4)
- # practicalli (4)
- # protojure (1)
- # re-frame (14)
- # releases (1)
- # restql (1)
- # reveal (24)
- # sci (1)
- # sql (21)
- # vim (11)
- # xtdb (33)
I started using portal yesterday, and I really like it! Now to my “problem”. When I click the “copy icon” in the lower left corner, it copies []
(in this example, see screenshot) but if I want to copy the data structure to the right, I now first mark the data structure in the browser and then copy it. Is there a better way of doing this, that I haven’t figured out yet?
❤️ 6
To clarify, this is what I want back in my clipboard:
{:group :component,
:candidates
[{:value "name:", :display "name", :order 1, :stay? true}
{:value "interface:", :display "interface", :order 2, :stay? true}],
:type :text}
Try selecting the value and cmd+c. The copy-as-edn function is also available from the command palette which opens on cmd+shift+p or clicking the button on the bottom right.
Ahh, that worked! Thanks!