>>> "Uwe" == Uwe Brauer <o...@mat.ucm.es> writes: > Hi
> I would like to one entry for the org-capture-templates > which will prompt for the file I want to save the capture. > So I tried > (setq org-capture-templates > '( > ("G" "Generic" table-line (file+headline (read-string "Name of file: " "Generic") > "|%f| %U|%A|" :prepend t)))) My bad forgot ) So this works nicely (setq org-capture-templates '( ("G" "Generic" table-line (file+headline (expand-file-name (read-string "Name of file: ")) "Generic") "|%f| %U|%A|" :prepend t))