Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想设置一些缓冲区以插入模式在邪恶中打开。
例如,在只读缓冲区中,正常模式没有意义,因为我不能使用 q 退出,但我必须执行 i q。这对于产生错误缓冲区的交互模式来说很烦人。
我一直在尝试和失败的事情如下:
(evil-set-initial-state view-mode 'insert)
您可以修改变量evil-insert-state-modes,其中包含应在插入状态下启动的模式列表:
evil-insert-state-modes
(add-to-list 'evil-insert-state-modes 'view-mode)
emacs 状态、正常状态等有类似的变量。