Refile from one file to other

前端 未结 1 1110
醉酒成梦
醉酒成梦 2021-02-05 11:04

I\'m trying to implement GTD in emacs based on http://members.optusnet.com.au/~charles57/GTD/gtd_workflow.html and I have a problem with refiling.

In the file .emacs I h

相关标签:
1条回答
  • 2021-02-05 11:48

    Here's a fix of your code:

    (setq org-refile-targets
          '(("gtd.org" :maxlevel . 1)
            ("done.org" :maxlevel . 1)))
    

    Here's a setup similar to what I use now:

    (setq org-agenda-files
          '("gtd.org" "done.org"))
    
    (setq org-refile-targets
          '((nil :maxlevel . 3)
            (org-agenda-files :maxlevel . 3)))
    

    This first element of org-refile-targets decides the heading levels to consider within current file, the second element - within other agenda files.

    0 讨论(0)
提交回复
热议问题