大家好。我在使用org-capture命令时发现了一个问题,就是不能在模板设置中使用datetree。
org-capture的设置如下:
(setq org-capture-templates
'((“s” “记录成功的事” entry (file+olp+datetree “~/documents/Doc-by-emacs/2-org/成功日记.org”) “* %?\n %i\n” :empty-lines 1)))
当设置中含datetree时,使用org-capture的时候,便会出现以下错误:
Debugger entered–Lisp error: (error “Invalid capture target specification”)
signal(error (“Invalid capture target specification”))
error(“Invalid capture target specification”)
org-capture-set-target-location()
org-capture(nil)
funcall-interactively(org-capture nil)
call-interactively(org-capture nil nil)
command-execute(org-capture)
如果采用如下配置:
(setq org-capture-templates
'((“s” “记录成功的事” entry (file+olp “~/documents/Doc-by-emacs/2-org/成功日记.org”) “* %?\n %i\n” :empty-lines 1)))
那么就能通过C-c c s
实现捕获。
请问各位,这是什么原因导致的?如何解决?
前一段时间还能用的 。最近刚弄完字体配置后出现了这个问题,不清楚是不是和字体设置有关。
win7+GNU Emacs 25.3.1 (x86_64-w64-mingw32)+org 8.2.10(Emacs自带的)