If you want to use Ido completion, you can change org-outline-path-complete-in-steps . My settings include
(setq org-refile-use-outline-path 'file) (setq org-refile-targets `( ( ,(append org-agenda-files (list tech)) :regexp . "refile") ( ,(append org-agenda-files (list tech)) :maxlevel . 1) )) (setq org-completion-use-ido t) (setq org-outline-path-complete-in-steps nil) (setq org-reverse-note-order t)
Right after Cc Cw I can only see file names. But if I go over, subtrees of level one will appear. I haven't made any subtrees of the subtree yet, but hopefully the first description of the target will behave nicely.
I also have a reverse order-note, so that new items will not be lost at the bottom of the target.
The tech variable expands wherever I want to save it. I do not want to put this in my org-agenda-files , this is something that I really do not need to do, but I want it to be referenced.
Brady trainor
source share