在我的.emacs
文件中,我有变量设置'(org-log-refile (quote time))
。这意味着当我使用C-c C-w
重新填充某些内容时,会添加一个非活动时间戳,例如:
* TODO a task - Refiled on [2013-10-13 Sun 15:17]
当我处于组织模式日历议程视图中时,点击l
(这是小写的L,而不是1)会触发org-agenda-log-mode
。这意味着我看到时钟项目被添加到我的议程中。但是,我没有看到被改装的物品,这不是我所期望的。对于可能值得的内容,我的.emacs
文件中已经有以下变量设置:'(org-agenda-log-mode-items (quote (closed clock state)))
那么,如何在org-agenda-log-mode
中将重新提交的项目显示在我的议程中?
答案 0 :(得分:3)
您需要将org-agenda-include-inactive-timestamps
设置为't
通过(setq org-agenda-include-inactive-timestamps 't)
或将org-agenda-custom-commands
添加为其中一个选项,例如:
(agenda ""
((org-agenda-span 'day)
(org-agenda-include-inactive-timestamps 't)))
将此项添加为org-agenda-custom-commands
的一部分会生成变量let-bound
。它仅适用于当前议程而不是默认设置。如果要将其设置为所有议程命令的默认值,可以使用以下命令:
(setq org-agenda-include-inactive-timestamps 't)