You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I tried with the config (setq org-journal-carryover-items "-TODO=\"DONE\"") to move all items except "DONE" to be carried to the new date. However if I config that way everytime I create new entry it will somehow mess up with the current-date entries and delete the headings of the current date.
To Reproduce
Steps to reproduce the behavior:
Set this in the config: (setq org-journal-carryover-items "-TODO=\"DONE\"")
and initiate org-journal-new-entry
Expected behavior
All items except "DONE" will be carried to next date.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
OS: Manjaro Linux x86_64
Emacs Version: 28.1
Your Emacs Configuration
The part relevant to org-journal.
(use-package! org-journal
:ensure t
:defer t
:init
:config
(setq org-journal-dir "~/ownCloud/org/journal/"
org-journal-file-format "%Y.org"
org-journal-file-type 'yearly
org-journal-enable-agenda-integration t
org-journal-date-format "%A, %d/%m/%y"
org-journal-carryover-items "-TODO=\"DONE\"" ;; set carry over exclude DONE
))
The text was updated successfully, but these errors were encountered:
It will delete the heading of the current date, e.g. Tuesday, 21/06/2022
and all of its subheadings (entries) under that date, and then create a new
entry in the previous date, not sure it will delete entries in previous
date as well.
Describe the bug
I tried with the config
(setq org-journal-carryover-items "-TODO=\"DONE\"")
to move all items except "DONE" to be carried to the new date. However if I config that way everytime I create new entry it will somehow mess up with the current-date entries and delete the headings of the current date.To Reproduce
Steps to reproduce the behavior:
Set this in the config:
(setq org-journal-carryover-items "-TODO=\"DONE\"")
and initiate
org-journal-new-entry
Expected behavior
All items except "DONE" will be carried to next date.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Your Emacs Configuration
The part relevant to org-journal.
The text was updated successfully, but these errors were encountered: