summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfpi2020-03-09 16:58:20 +0100
committerfpi2020-03-09 17:04:25 +0100
commite8ec67e20003fe290c385dbcf44c045f75f071de (patch)
tree45d9f7c6cd8d66b7bfa3f6d46317f7452db74454
parentDo not show deadline warnings in agenda if scheduled (diff)
Add functions to manipulate clocking times
-rw-r--r--emacs-init.org10
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org
index 46e3d62..40756e7 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -1840,6 +1840,16 @@ Use imagemagick and standalone class for latex preview.
(org-caldav-exclude-tags '(nocal))
)
#+end_src
+*** org-clock-convenience
+#+begin_src emacs-lisp
+(use-package org-clock-convenience
+ :ensure t
+ :bind (:map org-agenda-mode-map
+ ("<S-up>" . org-clock-convenience-timestamp-up)
+ ("<S-down>" . org-clock-convenience-timestamp-down)
+ ("<C-right>" . org-clock-convenience-fill-gap)
+ ("<C-left>" . org-clock-convenience-fill-gap-both)))
+#+end_src
*** ox-reveal
#+BEGIN_SRC emacs-lisp
(use-package ox-reveal