mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix evil-easymotion lazyloading middleman
It would fire off the wrong prefix when no operator was active (thus passing nil to where-is-internal). Reported by @ar1a
This commit is contained in:
@ -45,8 +45,8 @@ integration."
|
||||
(evil-define-key* 'motion 'global prefix nil)
|
||||
(evilem-default-keybindings prefix)
|
||||
(which-key-reload-key-sequence
|
||||
(vconcat (where-is-internal evil-this-operator
|
||||
evil-normal-state-map
|
||||
t)
|
||||
(vconcat (when evil-this-operator
|
||||
(where-is-internal evil-this-operator
|
||||
evil-normal-state-map
|
||||
t))
|
||||
prefix))))
|
||||
|
||||
|
Reference in New Issue
Block a user