mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix non evil environment (void variable evil this operator)
This commit is contained in:
@ -13,7 +13,8 @@
|
|||||||
(setq prefix-arg current-prefix-arg
|
(setq prefix-arg current-prefix-arg
|
||||||
unread-command-events
|
unread-command-events
|
||||||
(mapcar (lambda (e) (cons t e))
|
(mapcar (lambda (e) (cons t e))
|
||||||
(vconcat (when evil-this-operator
|
(vconcat (when (and (fboundp 'evil-this-operator)
|
||||||
|
evil-this-operator)
|
||||||
(where-is-internal evil-this-operator
|
(where-is-internal evil-this-operator
|
||||||
evil-normal-state-map
|
evil-normal-state-map
|
||||||
t))
|
t))
|
||||||
|
Reference in New Issue
Block a user