summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernt Hansen <bernt@norang.ca>2009-06-09 10:51:52 -0400
committerCarsten Dominik <carsten.dominik@gmail.com>2009-06-09 23:01:34 +0200
commit7f9e53d6b179278e969f30bd9599faeebad62293 (patch)
treebdc2e8fb50fdaf6652763842c1f9073c27fc71f0
parenta6449c0324ebfe5aa17415f44ab1e86e20c4a0a2 (diff)
downloadorg-mode-7f9e53d6b179278e969f30bd9599faeebad62293.tar.gz
Initialize org-clock-notification-was-shown on clock-in
This makes org-clock-sound a little more well-behaved. The clock sound was only being issued if you were already clocking a task that was under its limit, and changed to clocking something else. Now each time you clock in a new task it checks the estimated effort limit and issues the org-clock-sound if the limit is exceeded. This patch issues the org-clock-sound whenever you clock in a task that is already over its estimated effort amount. This allows you to use the estimated effort as a limit for the amount of time to spend on a task. Each time you clock in the task you'll be notified that you are over the limit. This is great for tasks where you want to limit the amount of time spent (per day, since last repeat) and is a reminder to go work on something else instead.
-rw-r--r--lisp/org-clock.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index 1016c6a..57f1a6f 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -420,6 +420,7 @@ clock into. When SELECT is `C-u C-u', clock into the current task and mark
is as the default task, a special task that will always be offered in
the clocking selection, associated with the letter `d'."
(interactive "P")
+ (setq org-clock-notification-was-shown nil)
(catch 'abort
(let ((interrupting (marker-buffer org-clock-marker))
ts selected-task target-pos (msg-extra ""))