如何在日志日程视图中显示org-mode重新创建的项目

时间:2013-10-22 22:36:28

标签: emacs org-mode

在我的.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中将重新提交的项目显示在我的议程中?

1 个答案:

答案 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)