1

我正在使用 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 没有将其视为字符串。这似乎是正确的,因为如果我评估它,除非我进行插入,否则不会打印任何内容。但我不想插入它 - 我希望表达式被评估并用作字符串。 另一个问题让我有类似的想法,我必须做一些事情才能让格式化的字符串显示为字符串。

4

1 回答 1

1

似乎引用太多,并且从未评估过调用。正如您所说,字符串有效,因此您可以尝试将其内部更改quote为准引号和逗号。另外,看看格式,这个变量似乎是一个列表列表,你有一个列表列表。我的猜测是这样的:

`(org-capture-templates (
                         ("t" "Todo" entry (file+headline "~/doc/org/timesheet.org" ,(format-time-string "%h %e")) "**** TODO %i%?")))

我不知道模板格式,但您必须确保对函数调用进行评估以生成具有评估值的实际列表。

于 2012-12-17T00:13:53.597 回答