我将此添加到.emacs:
(setq org-support-shift-select t)
因此,每次将TODO项目设置为完成时,我都会得到:
* DONE Important task
CLOSED: [2014-09-04 Thu 18:44]
是否可以在时间戳上添加秒数?所以我可以得到这个:
* DONE Important task
CLOSED: [2014-09-04 Thu 18:44:31]
This page说,我可以自定义时间戳格式。但我无法理解,怎么做。我试过这个:
(setq org-time-stamp-custom-formats '("<%m/%d/%y %a>" "<%m/%d/%y %a %H:%M:%S>"))
但它不起作用。
答案 0 :(得分:1)
试试这个:
(setq org-time-stamp-formats
'("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M:%S>"))
请注意,它被定义为常量,因此您不会被鼓励 摆弄它(但你仍然可以:)。