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.
我正在使用组织模式捕获来创建小笔记和待办事项。我也在使用邪恶模式。
我想做的是在我进入捕获时自动进入插入模式。我尝试在 org-capture-mode-hook 中添加一个钩子并在钩子中运行 (evil-insert),但这不起作用。还有什么我可以尝试的吗?
谢谢!
西蒙
(add-hook 'org-capture-mode-hook 'evil-insert-state)
你可以试试
(evil-set-initial-state 'org-capture-mode 'insert)