Не могу использовать org-capture: `Capture template 't': listp` - PullRequest
0 голосов
/ 16 декабря 2018

Запустив пример руководства org, https://orgmode.org/manual/Capture-templates.html

Я оцениваю следующий код в emacs:

(setq org-capture-templates
      '(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks")
             "* TODO %?\n  %i\n  %a")
        ("j" "Journal" entry (file+olp+datetree "~/org/journal.org")
             "* %?\nEntered on %U\n  %i\n  %a")))

Затем я запускаю M-x org-capture t.Распечатывается следующая ошибка, и я ничего не могу записать: org-capture: Capture template ‘t’: listp

Вот полная обратная трассировка:

Debugger entered--Lisp error: (error "Capture template ‘t’: listp")
  signal(error ("Capture template ‘t’: listp"))
  error("Capture template `%s': %s" "t" listp)
  org-capture(nil)
  funcall-interactively(org-capture nil)
  call-interactively(org-capture nil nil)
  command-execute(org-capture)

1 Ответ

0 голосов
/ 17 декабря 2018

Такое поведение вызвано тем, что org-blank-before-new-entry установлено на t

...