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
Hi, is it possible to add the ability to not hide the past DONE events, since I'd like to use the timeblock display for entering the time sheets at the end of the day, but once those are gone - I'd have to re-enable my day's tasks to "TODO" in order to see them all displayed again.
The text was updated successfully, but these errors were encountered:
Commented couple of lines (see the ";" below) in the org-timeblock.el file, and it now shows me the "DONE" items as well. @ichernyshovvv is it possible to have this behavior as a variable setting?
(defun org-timeblock-get-buffer-entries-all (buffer)
"Get all not done and not archived entries with any active timestamp in BUFFER."
(let (entries tags
update-markers-alist-p
(buffer-markers
(alist-get buffer
org-timeblock-markers nil nil #'equal)))
(with-current-buffer buffer
(org-with-wide-buffer
(goto-char (point-min))
(while (re-search-forward org-tsr-regexp nil t)
(if (save-match-data
;(or (org-entry-is-done-p)
(progn
(setq tags
(mapcar #'substring-no-properties
(org-get-tags)))
(member org-archive-tag tags))
;)
)
(org-get-next-sibling)
Hi, is it possible to add the ability to not hide the past DONE events, since I'd like to use the timeblock display for entering the time sheets at the end of the day, but once those are gone - I'd have to re-enable my day's tasks to "TODO" in order to see them all displayed again.
The text was updated successfully, but these errors were encountered: