lang/org: org-clock-in-resume = t, org-clock-out-remove-zero-time-clocks = t
This commit is contained in:
parent
043205b515
commit
29f6db6ead
1 changed files with 6 additions and 1 deletions
|
@ -907,7 +907,12 @@ compelling reason, so..."
|
||||||
(use-package! org-clock ; built-in
|
(use-package! org-clock ; built-in
|
||||||
:commands org-clock-save
|
:commands org-clock-save
|
||||||
:init
|
:init
|
||||||
(setq org-clock-persist t)
|
(setq org-clock-persist t
|
||||||
|
;; Resume when clocking into task with open clock
|
||||||
|
org-clock-in-resume t
|
||||||
|
;; Remove log if task ends up with 0:00 on the clock
|
||||||
|
org-clock-out-remove-zero-time-clocks t)
|
||||||
|
|
||||||
(defadvice! +org--clock-load-a (&rest _)
|
(defadvice! +org--clock-load-a (&rest _)
|
||||||
"Lazy load org-clock until its commands are used."
|
"Lazy load org-clock until its commands are used."
|
||||||
:before '(org-clock-in
|
:before '(org-clock-in
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue