This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-11-28
Channels
- # announcements (1)
- # aws (1)
- # babashka (41)
- # beginners (21)
- # biff (7)
- # calva (102)
- # cider (8)
- # cljs-dev (1)
- # clojure (8)
- # clojure-bay-area (2)
- # clojure-dev (30)
- # clojure-europe (40)
- # clojure-norway (52)
- # clojure-sweden (9)
- # clojure-uk (5)
- # clojurescript (15)
- # cursive (7)
- # data-science (1)
- # datomic (23)
- # events (1)
- # fulcro (9)
- # humbleui (23)
- # hyperfiddle (46)
- # introduce-yourself (1)
- # jackdaw (2)
- # jobs (2)
- # london-clojurians (1)
- # malli (13)
- # off-topic (8)
- # re-frame (36)
- # remote-jobs (1)
- # shadow-cljs (4)
- # specter (4)
- # squint (1)
- # transit (4)
- # vim (1)
Hi all, I'd like to use the new tap>
integration - thanks it is very handy 😄
During debugging though, I don't see the new t
and 1
shortcut coming out - I see the actual elisp function and I can call it with no issue.
Am I missing some configuration of cider-inspector-mode
?
Glad to hear! t and 1 are defined in cider-inspector-mode-map Maybe it's defined twice somehow? Maybe some unfortunate distro / byte-compilation thing resulted in that This should always work:
(define-key cider-inspector-mode-map "t" #'cider-inspector-tap-current-val)
(define-key cider-inspector-mode-map "1" #'cider-inspector-tap-at-point)
...which is good to put into 'cider-inspector-mode-hookOk I'll try that
I see I had eldev compile && eldev build :autoloads
in my emacs but they maybe the second one is not needed anymore
I am using https://github.com/emacscollective/borg - makes for some fun sometimes 😄
Uhm, no, it was not a compilation issue, I'll stick with define-key
for now then
if you figure it out, let us know :) Have a great one with the Inspector, I've made great use of it lately so there's more stuff to come https://github.com/clojure-emacs/orchard/issues
Uhm for some reason the define-key
don't work in a use-package
hook - I'll have to dig deeper into this as there is something weird going on