Fork me on GitHub
#emacs
<
2019-06-29
>
theeternalpulse22:06:00

How do I get emacs minor mode bindings to bind in evil mode states. for example when I go to an elisp debugger mode and try to press "n" it picks up evil's "next" for the search. I have to press "Esc" first and press n to get it to respond to the emacs binding.

ag23:06:28

something like: (evil-define-key 'normal Info-mode-map (kbd "M") #'Info-menu)

theeternalpulse03:06:15

I actually found out that this does it (add-hook 'edebug-setup-hook #'evil-normalize-keymaps)