This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-02-08
Channels
- # announcements (50)
- # asami (19)
- # babashka (28)
- # beginners (68)
- # calva (34)
- # cider (11)
- # cljdoc (24)
- # clojure (148)
- # clojure-australia (1)
- # clojure-brasil (6)
- # clojure-europe (48)
- # clojure-france (13)
- # clojure-germany (4)
- # clojure-italy (6)
- # clojure-nl (19)
- # clojure-uk (22)
- # clojurescript (36)
- # conjure (3)
- # cursive (10)
- # data-science (1)
- # datascript (3)
- # datomic (12)
- # etaoin (3)
- # events (3)
- # fulcro (33)
- # graalvm (7)
- # honeysql (4)
- # jobs (4)
- # jobs-discuss (11)
- # kaocha (1)
- # keechma (4)
- # luminus (1)
- # malli (10)
- # membrane (8)
- # off-topic (34)
- # pathom (35)
- # pedestal (1)
- # re-frame (15)
- # releases (1)
- # remote-jobs (1)
- # reveal (41)
- # shadow-cljs (42)
- # startup-in-a-month (2)
- # vim (11)
Hey there. Is there a mouse/keyboard command in reveal that would clear the output panel?
I'm using reveal only as a tap as described in https://vlaaad.github.io/reveal/#ui and couldn't get the editor commands work for some reason
it is Ctrl-L https://github.com/vlaaad/reveal/pull/14#issuecomment-741992148
It seems that my reveal window doesn't see ctrl
being pressed. I'm on a mac. Checked global shortcuts and I don't seem to have anything clashing
How about clear command? have you tried evaluating (tap> {:vlaaad.reveal/command '(clear-output)})
?
it doesn't work either but I might have found something. Seems I'm using some old version
Hi! Why is my reveal not following the output at the end of the window like with less or something? Is there some config I have to set?
That is one of my peeves as well, it starts off well, then somehow, it gets "stuck" and doesn't advance onwards whenever new output is sent to it. I suspect, that a focus on it, moving up and down the scrollbar does this.
it does autoscrolling when latest value is selected, if you select something else it wont autoscroll
with that said, I also find this behavior annoying as hell, I’ll add more heuristics to determine when to autoscroll
I'm playing with reveal and portal, to see which works for me (both are great). A thing I like about portal is that puts the latest to the top, and pushes the rest down.
Hey folks, I just released 1.3.195
with 2 important changes:
• auto-scrolling to bottom is more aggressive — big QoL improvement!
• fixed exception on submitting sorted collections that don't contain keywords
@vlaaad I just noticed that the code input field no longer works: if I select, say, a sequence value and press space, then type (count *v)
in the input field, nothing submits it. return
/`enter` used to work but it no longer does anything.
You mean this was introduced in 1.3.195
? odd... I can't reproduce it, (count *v)
works on maps as well as seqs...
Hmm, weird. It seems to work standalone. Will continue digging...
It works on some sequences and not on others. Odd.
I can't see any obvious pattern to what works and what doesn't. I have a big nested data structure and I can run code on some of the values inside it, but not on their surrounding hash maps or lazy sequences 👀
Not easily. It's big data structure full of Google Cloud AI Vision API result objects 👀
Now I've transformed the result to pure Clojure data, it all works again, so it seems to be something about data structures containing Java objects?
Hmm, eval in action popup embeds selected value in code (i.e. changes the form), perhaps it fails in some cases
It was initially a sequence built by (for [obj google-objs] (bean obj))
But those Google objects are crazy nested objects-within-objects stuff. Ugh!