Variable: org-effort-durations
org-effort-durations is an alias and customizable for
org-duration-units, defined in org-compat.el.gz.
This variable is obsolete since 9.2; use org-duration-units instead.
Value
(("min" . 1)
("h" . 60)
("d" . 1440)
("w" . 10080)
("m" . 43200)
("y" . 525960.0))
Documentation
Conversion factor to minutes for a duration.
Each entry has the form (UNIT . MODIFIER).
In a duration string, a number followed by UNIT is multiplied by the specified number of MODIFIER to obtain a duration in minutes.
For example, the following value
`(("min" . 1)
("h" . 60)
("d" . ,(* 60 8))
("w" . ,(* 60 8 5))
("m" . ,(* 60 8 5 4))
("y" . ,(* 60 8 5 4 10)))
is meaningful if you work an average of 8 hours per day, 5 days a week, 4 weeks a month and 10 months a year.
When setting this variable outside the Customize interface, make sure to call the following command:
M-x org-duration-set-regexps (org-duration-set-regexps)
Aliases
org-effort-durations (obsolete since 9.2)