This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-02-07
Channels
- # announcements (38)
- # asami (14)
- # beginners (35)
- # biff (3)
- # calva (29)
- # cider (20)
- # clj-kondo (7)
- # cljdoc (38)
- # clojure (64)
- # clojure-art (2)
- # clojure-australia (1)
- # clojure-dev (6)
- # clojure-europe (30)
- # clojure-nl (4)
- # clojure-spec (4)
- # clojure-uk (9)
- # clojured (3)
- # clojurescript (87)
- # cursive (17)
- # datahike (2)
- # datomic (10)
- # defnpodcast (2)
- # emacs (2)
- # events (1)
- # fulcro (25)
- # gratitude (1)
- # introduce-yourself (1)
- # jobs-discuss (21)
- # lsp (103)
- # malli (41)
- # meander (8)
- # minecraft (3)
- # missionary (3)
- # nextjournal (20)
- # off-topic (10)
- # pedestal (1)
- # polylith (15)
- # portal (6)
- # releases (2)
- # ring (1)
- # ring-swagger (2)
- # sci (4)
- # shadow-cljs (5)
- # spacemacs (3)
- # sql (11)
- # xtdb (3)
Not sure if this already exists but I would love it if the watched variables in the debugger automatically doall-ed all the lazy seqs
The issue there is that they might be infinite. I agree it would be good if it could display them say 10 at a time, though.
it will create situations like • code don't works • open the debugger • now the code works. • close the debuger • not work again
I often find myself wanting to copy the fully-qualified name of a symbol or keyword these days. Is anyone aware of a command in Cursive to do that?
so, standing on (defn as|df []
I would like my.namespace/asdf
to get onto the clipboard.
and everything like w
, b
, e
, vaw
, yaw
, *
in normal mode will consider some-thing liek some-word/with.whatever
as one word
The point is not that some expanded selection is copied, but that a fully qualified value is copied
asdf
-> my.namespace/asdf
::bleh
-> :my.namespace/bleh
foo/bar
-> that.other.ns.foo/bar
::foo/qwer
-> :that.other.ns.foo/qwer
In the past I have hit shift f6 (refactor > rename), which I use all the time anyway, to get the fully qualified name of a namespaced keyword at least.
wonderful, thank you @U0567Q30W