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

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")) ;;

org-refile using the ID of the target

2021-04-06 Thread Jack Bauer
I take a lot of notes using MobileOrg in my phone, and after syncing, they go into in.org (my gtd "in basket"). From there, I do the capturing process. Thing is, sometimes there's a *lot* of notes that I just want to refile to the "Notes" subtree from the corresponding project/context. A quick