diff options
| author | fpi | 2020-10-30 19:33:26 +0100 | 
|---|---|---|
| committer | fpi | 2022-03-17 14:44:37 +0100 | 
| commit | e900cf26c13478aff3cc942dde20af5ff0944888 (patch) | |
| tree | dab0e9fdabda1f27be47011fefd92744cb977d9c | |
| parent | Sort some agenda entries by hotness (diff) | |
Set clock checking to tolerate no gap at all
| -rw-r--r-- | emacs-init.org | 5 | 
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 ()  | 
