Hi, At Tue, 4 Mar 2014 17:43:41 +0200, Xebar Saram wrote: > > i find the normal C-c w then manually choosing a file to allocate each > 'capture' pretty slow. i am looking for any advice on workflows you > guys have to make this quicker. > > one thing i was thinking of was maybe assigning a hotkey to do a > refile to a specific note/heading. so ill have 5-6 hotkeys to my most > common files to speed things up, can this be done? if so can anyone > show my an example of such a thing?
Nice idea. A quick grance at `org-refile' in org.el, something like this will do: (defun org-refile-to-myfile () "Refile to myfile.org" (interactive) (org-refile nil nil '("my refiling pos" "myfile.org" "" 0))) The 3rd argument seems to be `(list message file re pos)', but not sure how `re' and `pos' works. Could someone enlignten me? -- yashi