I've remaped my HJKL to JKLÇ both in normal and in motion states, but for some reason when I enter the buffer-menu the movement keys are rebound to HJKL, but ONLY in motion state, if I switch to normal state I get my JKLÇ back. This is even more odd since it has never happened before and I've found no reason for this to happen. Furthermore, it only seems to rebind those four keys.
Does anyone have any ideas of what might be causing this? This is my evilkeybinds.el which is called at some point in my .emacs file: ; Motion commands > > (define-key evil-normal-state-map "j" 'evil-backward-char) > (define-key evil-normal-state-map "k" 'evil-next-line) > (define-key evil-normal-state-map "l" 'evil-previous-line) > (define-key evil-normal-state-map "ç" 'evil-forward-char) > (define-key evil-normal-state-map "«" 'evil-first-non-blank) > (define-key evil-normal-state-map (kbd "ª") 'evil-scroll-up) > (define-key evil-normal-state-map (kbd "º") 'evil-scroll-down) > (define-key evil-normal-state-map (kbd "£") 'other-window) > > (define-key evil-motion-state-map "j" 'evil-backward-char) > (define-key evil-motion-state-map "k" 'evil-next-line) > (define-key evil-motion-state-map "l" 'evil-previous-line) > (define-key evil-motion-state-map "ç" 'evil-forward-char) > (define-key evil-motion-state-map "«" 'evil-first-non-blank) > (define-key evil-motion-state-map (kbd "ª") 'evil-scroll-up) > (define-key evil-motion-state-map (kbd "º") 'evil-scroll-down) > (define-key evil-motion-state-map (kbd "£") 'other-window) > > ; Misc > > (define-key evil-insert-state-map (kbd "C-g") 'evil-normal-state) > (define-key evil-insert-state-map (kbd "ESC") nil) > Thank you in advance for all the help provided.
_______________________________________________ implementations-list mailing list [email protected] https://lists.ourproject.org/cgi-bin/mailman/listinfo/implementations-list
