This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-08-27
Channels
- # admin-announcements (1)
- # announcements (11)
- # babashka (17)
- # beginners (26)
- # calva (6)
- # cider (2)
- # circleci (1)
- # clojure (41)
- # clojure-dev (1)
- # clojure-europe (31)
- # clojure-france (2)
- # clojure-italy (10)
- # clojure-nl (7)
- # clojure-norway (5)
- # clojure-spec (15)
- # clojure-uk (42)
- # clojurescript (4)
- # code-reviews (12)
- # conjure (10)
- # datalog (2)
- # datascript (15)
- # datomic (37)
- # emacs (1)
- # events (5)
- # fulcro (19)
- # jobs (1)
- # jobs-discuss (9)
- # kaocha (2)
- # luminus (14)
- # meander (4)
- # membrane (39)
- # off-topic (26)
- # other-languages (2)
- # re-frame (13)
- # reitit (6)
- # rewrite-clj (39)
- # sci (6)
- # shadow-cljs (33)
- # test-check (15)
- # vrac (17)
- # xtdb (7)
Workflow question here:
When I encounter an exception raised by a spec-instrumentation failure, I typically want to immediately look at the ex-data. I know we can print the most recent exception with <leader>ve
, however the ex-data is all on one line which, given the size of most spec-data failures, isn't an effective way to view the error.
Right now I'm just writing and eval'ing (ex-data *e)
in any buffer. Maybe this is really the easiest thing. I'd be happy to hear any other suggestions!
eval-ing (ex-data *e)
sounds reasonable to me. maybe you could set up a custom mapping, so that you don't have to type it out?
Hmm, I've never really hit this but as you say: Workflow. I'd personally end up creating my own mapping to :ConjureEval ...
with some code that did what I wanted, but that's maybe a bit of a lazy excuse from me.
Completely agree with preferring custom-mappings over adding to the conjure built-ins. It could be fun to have a conjure-wiki section of custom-mappings from other people's workflows.
Also, here's a video of a stream I did earlier! Just a little nvim config changes as well as Conjure fixes and improvements https://www.youtube.com/watch?v=SMrN5KQo-eA
Completely agree with preferring custom-mappings over adding to the conjure built-ins. It could be fun to have a conjure-wiki section of custom-mappings from other people's workflows.