使用最后clocke-out时间作为任务完成时间
默认情况下当把entry的状态设置为完成时,会把当前时间作为完成entry的时间戳。 但这就要求我们能够及时地把一项任务标注为完成,否则这个时间就会跟实际的任务完成时间脱节很大了。
一直以来我都是手工对其进行调整的,直到今天发现了一个变量 org-use-last-clock-out-time-as-effective-time
.
下面是关于这个变量的说明
org-use-last-clock-out-time-as-effective-time is a variable defined in ‘org.el’. Its value is nil Documentation: When non-nil, use the last clock out time for ‘org-todo’. Note that this option has precedence over the combined use of ‘org-use-effective-time’ and ‘org-extend-today-until’. You can customize this variable. This variable was introduced, or its default value was changed, in version 24.4 of Emacs.
说白了就是当这个变量设置为非nil时,会使用最后记录的clock-out的时间作为实际的关闭时间。 而当没有clock-out时间的情况下,则依然会使用当前时间戳作为关闭时间,简直是太贴心了...