This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-06-14
Channels
- # babashka (43)
- # beginners (47)
- # biff (1)
- # calva (16)
- # cider (7)
- # clerk (6)
- # clj-kondo (39)
- # cljdoc (49)
- # clojure (29)
- # clojure-brasil (1)
- # clojure-europe (93)
- # clojure-losangeles (1)
- # clojure-norway (34)
- # conjure (7)
- # datalevin (8)
- # events (1)
- # gratitude (3)
- # honeysql (6)
- # hyperfiddle (2)
- # introduce-yourself (1)
- # javascript (1)
- # jobs-discuss (9)
- # lsp (3)
- # malli (10)
- # off-topic (8)
- # pedestal (3)
- # rewrite-clj (2)
- # shadow-cljs (17)
- # sql (33)
- # vim (1)
- # xtdb (31)
Hi! I'm trying to use the cider debugger with evil-mode but evil is capturing the debugger minor modes keys. I see there is evil-emacs-state-modes
for modes you want evil to automatically go to normal emacs, but it doesn't seem to work for minor modes like the cider debugger. Any ideas?
I think the best approach is to use https://github.com/emacs-evil/evil-collection/
Otherwise you can bind the keys back to their original definitions by using evil-define-minor-mode-key
with a list like what they have https://github.com/emacs-evil/evil-collection/blob/97a57c91d200a278d0bf91199e2eae45f7d875b0/modes/cider/evil-collection-cider.el#L101-L113
oh that is interesting