#+TODO: TODO | DONE * inbox ~:prepend nil~ works except first element (?) [3/3] [100%] :PROPERTIES: :CUSTOM_ID: inbox_prepend_nil :END: ** DONE Test title ** DONE Test title ** DONE Test title * inbox ~:prepend t~ never works (?) [0/0] [0%] :PROPERTIES: :CUSTOM_ID: inbox_prepend_t :END: ** DONE Test title ** DONE Test title ** DONE Test title * run this with ~:prepend nil~, cookies are updated, *except for some reason, the first item* #+name: prepend_t #+begin_src emacs-lisp :results none (defun my/goto () (org-link-open-from-string "[[#inbox_prepend_nil]]")) (setq org-capture-templates '( ("t" "test" entry (function my/goto) "** DONE Test title" :immediate-finish t :prepend nil) )) ;; run org-capture noninteractive (org-capture nil "t") #+end_src with ~:prepend t~, cookies are *not* updated #+name: prepend_nil #+begin_src emacs-lisp :results none (defun my/goto () (org-link-open-from-string "[[#inbox_prepend_t]]")) (setq org-capture-templates '( ("t" "test" entry (function my/goto) "** DONE Test title" :immediate-finish t :prepend t) )) ;; run org-capture noninteractive (org-capture nil "t") #+end_src