我试图在evil-motion-state-map (evil-window-bottom)中覆盖L,所以我的自定义绑定在树中优先。然而,这似乎是行不通的:
; my-mode.el
(map! :after evil-mode
:map evil-motion-state-map
"L" nil)有什么线索吗?是否应该将另一种模式传递为:“之后”?
evil-motion-state-map仅在树缓存中占据优先地位。
发布于 2021-01-22 12:20:32
您可以使用:m在evil-motion-state-map中映射。
而且你的包名也不是邪恶的,不是邪恶的模式。
所以也许就像这样。
(map! (:after evil
:m "L" nil))https://stackoverflow.com/questions/65131427
复制相似问题