|
@@ -148,28 +148,34 @@ out time will be 14:50."
|
|
|
(defcustom org-clock-in-switch-to-state nil
|
|
|
"Set task to a special todo state while clocking it.
|
|
|
The value should be the state to which the entry should be
|
|
|
-switched. If the value is a function, it must take one
|
|
|
-parameter (the current TODO state of the item) and return the
|
|
|
-state to switch it to."
|
|
|
+switched. It may also be an alist of `(CURRENT . NEXT)' pairs.
|
|
|
+If the value is a function, it must take one parameter (the
|
|
|
+current TODO state of the item) and return the state to switch it
|
|
|
+to."
|
|
|
:group 'org-clock
|
|
|
:group 'org-todo
|
|
|
:type '(choice
|
|
|
(const :tag "Don't force a state" nil)
|
|
|
(string :tag "State")
|
|
|
- (symbol :tag "Function")))
|
|
|
+ (alist :key-value (string :tag "Current State:")
|
|
|
+ :value-type (string :tag "Next State :"))
|
|
|
+ (symbol :tag "Function")))
|
|
|
|
|
|
(defcustom org-clock-out-switch-to-state nil
|
|
|
"Set task to a special todo state after clocking out.
|
|
|
The value should be the state to which the entry should be
|
|
|
-switched. If the value is a function, it must take one
|
|
|
-parameter (the current TODO state of the item) and return the
|
|
|
-state to switch it to."
|
|
|
+switched. It may also be an alist of `(CURRENT . NEXT)' pairs.
|
|
|
+If the value is a function, it must take one parameter (the
|
|
|
+current TODO state of the item) and return the state to switch it
|
|
|
+to."
|
|
|
:group 'org-clock
|
|
|
:group 'org-todo
|
|
|
:type '(choice
|
|
|
(const :tag "Don't force a state" nil)
|
|
|
(string :tag "State")
|
|
|
- (symbol :tag "Function")))
|
|
|
+ (alist :key-value (string :tag "Current State:")
|
|
|
+ :value-type (string :tag "Next State :"))
|
|
|
+ (symbol :tag "Function")))
|
|
|
|
|
|
(defcustom org-clock-history-length 5
|
|
|
"Number of clock tasks to remember in history.
|
|
@@ -1348,17 +1354,23 @@ the default behavior."
|
|
|
(run-hooks 'org-clock-in-prepare-hook)
|
|
|
(org-clock-history-push)
|
|
|
(setq org-clock-current-task (org-get-heading t t t t))
|
|
|
- (cond ((functionp org-clock-in-switch-to-state)
|
|
|
- (let ((case-fold-search nil))
|
|
|
- (looking-at org-complex-heading-regexp))
|
|
|
- (let ((newstate (funcall org-clock-in-switch-to-state
|
|
|
- (match-string 2))))
|
|
|
- (when newstate (org-todo newstate))))
|
|
|
+ (cond ((listp org-clock-in-switch-to-state)
|
|
|
+ (let ((case-fold-search nil))
|
|
|
+ (looking-at org-complex-heading-regexp))
|
|
|
+ (when-let ((state-pair (assoc (match-string 2) org-clock-in-switch-to-state))
|
|
|
+ (new-state (cdr state-pair)))
|
|
|
+ (org-todo new-state)))
|
|
|
+ ((functionp org-clock-in-switch-to-state)
|
|
|
+ (let ((case-fold-search nil))
|
|
|
+ (looking-at org-complex-heading-regexp))
|
|
|
+ (let ((newstate (funcall org-clock-in-switch-to-state
|
|
|
+ (match-string 2))))
|
|
|
+ (when newstate (org-todo newstate))))
|
|
|
((and org-clock-in-switch-to-state
|
|
|
(not (looking-at (concat org-outline-regexp "[ \t]*"
|
|
|
- org-clock-in-switch-to-state
|
|
|
- "\\>"))))
|
|
|
- (org-todo org-clock-in-switch-to-state)))
|
|
|
+ org-clock-in-switch-to-state
|
|
|
+ "\\>"))))
|
|
|
+ (org-todo org-clock-in-switch-to-state)))
|
|
|
(setq org-clock-heading (org-clock--mode-line-heading))
|
|
|
(org-clock-find-position org-clock-in-resume)
|
|
|
(cond
|
|
@@ -1720,6 +1732,12 @@ to, overriding the existing value of `org-clock-out-switch-to-state'."
|
|
|
(org-back-to-heading t)
|
|
|
(let ((org-clock-out-when-done nil))
|
|
|
(cond
|
|
|
+ ((listp org-clock-out-switch-to-state)
|
|
|
+ (let ((case-fold-search nil))
|
|
|
+ (looking-at org-complex-heading-regexp))
|
|
|
+ (when-let ((state-pair (assoc (match-string 2) org-clock-out-switch-to-state))
|
|
|
+ (new-state (cdr state-pair)))
|
|
|
+ (org-todo new-state)))
|
|
|
((functionp org-clock-out-switch-to-state)
|
|
|
(let ((case-fold-search nil))
|
|
|
(looking-at org-complex-heading-regexp))
|
|
@@ -1728,10 +1746,10 @@ to, overriding the existing value of `org-clock-out-switch-to-state'."
|
|
|
(when newstate (org-todo newstate))))
|
|
|
((and org-clock-out-switch-to-state
|
|
|
(not (looking-at
|
|
|
- (concat
|
|
|
- org-outline-regexp "[ \t]*"
|
|
|
- org-clock-out-switch-to-state
|
|
|
- "\\>"))))
|
|
|
+ (concat
|
|
|
+ org-outline-regexp "[ \t]*"
|
|
|
+ org-clock-out-switch-to-state
|
|
|
+ "\\>"))))
|
|
|
(org-todo org-clock-out-switch-to-state))))))
|
|
|
(force-mode-line-update)
|
|
|
(message (if remove
|