Re: org-refile using the ID of the target

2021-04-07 Thread Eglur
Hello, Christian. Thanks for the tip! It is indeed a very good solution. For now, I’m improvising the one-key approach with this ~/.emacs.d/init.el: (setq org-speed-commands-user '(("j" my/org-quick-refile))) (defun my/org-quick-refile () "Refile subtree using list of predefined targets

Re: org-refile using the ID of the target

2021-04-07 Thread Christian Moe
My approach is to tag the equivalent of your "Notes" subtree of the various projects in my agenda files with an :INBOX: tag. The following code in .emacs then makes sure they are presented as refile targets: ;; Refile (setq org-refile-targets '((org-agenda-files . (:tag . "INBOX")) ;; In