org-refile 归档相关

; Targets include this file and any file contributing to the agenda - up to 9 levels deep
(setq org-refile-targets (quote ((nil :maxlevel . 9)
                                 (org-agenda-files :maxlevel . 9))))

; Use full outline paths for refile targets - we file directly with IDO
(setq org-refile-use-outline-path t)

; Targets complete directly with IDO
(setq org-outline-path-complete-in-steps nil)

归档已完成的标签时 可以选择移动到其他文件的某个标题下

怎么样可以不移动到某个标题下 而是直接移动到文件内 一级标题

应该是 file 那个

(setq org-outline-path-complete-in-steps nil
      org-refile-allow-creating-parent-nodes 'confirm
      org-refile-use-outline-path 'file
      org-refile-targets '((nil :maxlevel . 5)
                           (org-agenda-files :maxlevel . 4)))

可以了 感谢大佬~