我正在使用 org-mode 并尝试设置捕获模板以将 TODO 放在当前日期命名的标题下。例如,对于今天(2012 年 12 月 12 日),我的标题是:
*** Dec 12
所以我在我的模板中尝试了这个:
'(org-capture-templates (quote
(
;;; note: this template works
("d" "Defect" entry (file+headline "~/doc/org/defects.org" "Open") "** TODO %^{Defect}")
;;; this template does not
("t" "Todo" entry (file+headline "~/doc/org/timesheet.org" (format-time-string "%h %e")) "**** TODO %i%?"))))
但是,我得到一个wrong-type-argument stringp
例外。这是一些堆栈跟踪:
Debugger entered--Lisp error: (wrong-type-argument stringp (format-time-string "%h %e"))
regexp-quote((format-time-string "%h %e"))
(format org-complex-heading-regexp-format (regexp-quote hd))
(re-search-forward (format org-complex-heading-regexp-format (regexp-quote hd)) nil t)
(if (re-search-forward (format org-complex-heading-regexp-format ...) nil t) (goto-char (point-at-bol)) (goto-char (point-max)) (or (bolp) (insert "\n")) (insert "* " hd "\n") (beginning-of-line 0))
... snip ...
我感觉这更像是一个通用的 Emacs Lisp 问题,而不是 org-mode 问题,但我不确定它可能是什么。我遇到了一篇帖子(我再也找不到它了),上面说通过将 format-time-string 放入括号中,Lisp 没有将其视为字符串。这似乎是正确的,因为如果我评估它,除非我进行插入,否则不会打印任何内容。但我不想插入它 - 我希望表达式被评估并用作字符串。 另一个问题让我有类似的想法,我必须做一些事情才能让格式化的字符串显示为字符串。