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:
parent
99902b29f9
commit
ab01e0167d
1 changed files with 4 additions and 4 deletions
|
@ -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))))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue