org-clock-out-remove-zero-time-clocks = t

Reverts 334c309; the original issue was reportedly fixed upstream at
some point.
This commit is contained in:
Henrik Lissner 2021-06-04 11:52:59 -04:00
parent f408016c6f
commit 26aeb72e63

View file

@ -986,7 +986,9 @@ compelling reason, so..."
:config
(setq org-clock-persist 'history
;; Resume when clocking into task with open clock
org-clock-in-resume t)
org-clock-in-resume t
;; Remove log if task was clocked for 0:00 (accidental clocking)
org-clock-out-remove-zero-time-clocks t)
(add-hook 'kill-emacs-hook #'org-clock-save))