在org-mode中重新注入新节点

时间:2014-04-06 13:10:43

标签: emacs elisp org-mode

这些是我的.emacs中用于在org-mode中重新启动的设置:

(setq org-refile-targets (quote ((nil :maxlevel . 10)
                             (org-agenda-files :maxlevel . 10))))

(setq org-refile-use-outline-path t)
(setq org-outline-path-complete-in-steps nil)
(setq org-refile-allow-creating-parent-nodes (quote confirm))

回归到现有路径可以正常工作,但是我无法创建新节点并重新启用它,因为最后一行应该允许我这样做。当我重新回到像这样的道路时:

Existing node"/New node"

我收到错误:

Please save the buffer to a file before refiling

据说这意味着emacs可以找出目标文件,但目标是使用org-refile-targets行设置的,那么错误是什么?

0 个答案:

没有答案