Allow "min" modifier in effort durations

* lisp/org.el (org-effort-durations): Allow "min" modifier.

This is a standard abbreviation.  It also improves compatibility with
other programs using this property (e.g. "Taskjuggler").
This commit is contained in:
Nicolas Goaziou 2014-11-03 00:18:43 +01:00
parent 76034be4cd
commit c8a54e7727
1 changed files with 2 additions and 1 deletions

View File

@ -17883,7 +17883,8 @@ If there is already a time stamp at the cursor position, update it."
(encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
(defcustom org-effort-durations
`(("h" . 60)
`(("min" . 1)
("h" . 60)
("d" . ,(* 60 8))
("w" . ,(* 60 8 5))
("m" . ,(* 60 8 5 4))