Org-Mode - How do I create a new file with org-capture?
问题 I want to create an org-capture template that create a dynamic file name for capture in emacs org-mode. I want that the name of the file takes the following form: (format-time-string "%Y-%m-%d") "-" (prompt for a name) ".txt" Example : 2012-08-10-MyNewFile.txt Based on this answer, I know how to dynamically create the name the file to include the date: `(defun capture-report-date-file (path) (expand-file-name (concat path (format-time-string "%Y-%m-%d") ".txt"))) '(("t" "todo" entry (file