summaryrefslogtreecommitdiff
path: root/emacs-init.org
diff options
context:
space:
mode:
authorfpi2020-10-30 19:33:26 +0100
committerfpi2022-03-17 14:44:37 +0100
commite900cf26c13478aff3cc942dde20af5ff0944888 (patch)
treedab0e9fdabda1f27be47011fefd92744cb977d9c /emacs-init.org
parentSort some agenda entries by hotness (diff)
Set clock checking to tolerate no gap at all
Diffstat (limited to '')
-rw-r--r--emacs-init.org5
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org
index def36ee..bd9940b 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -4062,6 +4062,11 @@ Gives an overview of time spent on defined budgets this week. Great to track if
"%50ITEM(Task) %5Effort(Effort){:} %5CLOCKSUM %3PRIORITY %20DEADLINE %20SCHEDULED %20TIMESTAMP %TODO %CATEGORY %TAGS")
#+end_src
**** Clocking
+I try to clock without any gap
+#+begin_src emacs-lisp :tangle no :noweb-ref org-agenda-custom
+(org-agenda-clock-consistency-checks '(:max-duration "10:00" :min-duration 0 :max-gap "0:00" :gap-ok-around ("4:00") :default-face ((:background "DarkRed") (:foreground "white")) :overlap-face nil :gap-face nil :no-end-time-face nil :long-face nil :short-face nil))
+
+#+end_src
***** Combine adjacent clock lines
#+begin_src emacs-lisp
(defun fpi/org-clock-join-last-clock ()