emacs org-agenda - 缺少任务的所有日常细节
emacs org-agenda - missing all the daily details for tasks
对于 emacs25(ubuntu 17.10 上的 emacs 25.2.2),我无法让 org-agenda-list 工作。 org-timeline 每天向我显示详细信息,但是 org-agenda-list 只列出日期的名称,没有列出任何详细信息.
我有以下 .emacs(已简化为一行以找出 org-agenda 无法正常工作的原因 - 我相当了解 emacs,但我是 org-mode 的第一次用户)
(global-set-key "\C-ca" 'org-agenda)
并且有一个空的 .emacs.d 目录,当我 运行 org-agenda-list 用于以下示例时:
* Tasks
** DONE [#A] do this y'day
SCHEDULED: <2018-03-22 Thu>
** TODO [#A] do this tomorrow
SCHEDULED: <2018-03-24 Sat>
** TODO [#A] this task is not scheduled
** TODO [#B] scheduled for today, priority B
SCHEDULED: <2018-03-23 Fri>
** IN PROGRESS [#A] scheduled today and deadline in 2 days
DEADLINE: <2018-03-25 Sun> SCHEDULED: <2018-03-23 Fri>
** TODO [#A] deadline in 2 days and not scheduled
DEADLINE: <2018-03-25 Sun>
** TODO [#A] scheduled for monday
SCHEDULED: <2018-03-29 Thu>
** TODO [#C] do this today if I get time
SCHEDULED: <2018-03-23 Fri>
** TODO [#B] neither is this one
** TODO [#C] or this one
** TODO [#A] deadline in 10 days and not scheduled
DEADLINE: <2018-03-31 Sat>
我只看到周条目,缺少日常任务的所有详细信息
Week-agenda (W12):
Monday 19 March 2018 W12
Tuesday 20 March 2018
Wednesday 21 March 2018
Thursday 22 March 2018
Friday 23 March 2018
Saturday 24 March 2018
Sunday 25 March 2018
其中 org-timeline 显示了日常任务的详细信息
Thursday 22 March 2018
Scheduled: DONE [#A] do this y'day
-------------------------------------------------------------------------------
Friday 23 March 2018
Scheduled: IN PROGRESS [#A] scheduled today and deadline in 2 days
Scheduled: TODO [#B] scheduled for today, priority B
Scheduled: TODO [#C] do this today if I get time
Saturday 24 March 2018
Scheduled: TODO [#A] do this tomorrow
Sunday 25 March 2018
Deadline: IN PROGRESS [#A] scheduled today and deadline in 2 days
Deadline: TODO [#A] deadline in 2 days and not scheduled
[... 4 empty days omitted]
Thursday 29 March 2018
Scheduled: TODO [#A] scheduled for monday
Friday 30 March 2018
Saturday 31 March 2018
Deadline: TODO [#A] deadline in 10 days and not scheduled
问:如何让 org-agenda-list 正常工作?
而且我安装后
M-x package-install org-edna
根据一些在线建议,我还丢失了 org-timeline 命令,我通过暴力应用 "apt remove emacs" 和 "apt install emacs" 恢复了它.
问:任何人都可以向我解释为什么我丢失了 org-timeline 命令吗?
谢谢。
检查:C-h v org-agenda-files
。如果你的文件不在那里,当你的文件在缓冲区中打开时,使用 M-x org-agenda-file-to-front
。现在尝试 M-x org-agenda
。您可以再次检查 C-h v org-agenda-files
,您会在那里找到您的文件。
对于 emacs25(ubuntu 17.10 上的 emacs 25.2.2),我无法让 org-agenda-list 工作。 org-timeline 每天向我显示详细信息,但是 org-agenda-list 只列出日期的名称,没有列出任何详细信息.
我有以下 .emacs(已简化为一行以找出 org-agenda 无法正常工作的原因 - 我相当了解 emacs,但我是 org-mode 的第一次用户)
(global-set-key "\C-ca" 'org-agenda)
并且有一个空的 .emacs.d 目录,当我 运行 org-agenda-list 用于以下示例时:
* Tasks
** DONE [#A] do this y'day
SCHEDULED: <2018-03-22 Thu>
** TODO [#A] do this tomorrow
SCHEDULED: <2018-03-24 Sat>
** TODO [#A] this task is not scheduled
** TODO [#B] scheduled for today, priority B
SCHEDULED: <2018-03-23 Fri>
** IN PROGRESS [#A] scheduled today and deadline in 2 days
DEADLINE: <2018-03-25 Sun> SCHEDULED: <2018-03-23 Fri>
** TODO [#A] deadline in 2 days and not scheduled
DEADLINE: <2018-03-25 Sun>
** TODO [#A] scheduled for monday
SCHEDULED: <2018-03-29 Thu>
** TODO [#C] do this today if I get time
SCHEDULED: <2018-03-23 Fri>
** TODO [#B] neither is this one
** TODO [#C] or this one
** TODO [#A] deadline in 10 days and not scheduled
DEADLINE: <2018-03-31 Sat>
我只看到周条目,缺少日常任务的所有详细信息
Week-agenda (W12):
Monday 19 March 2018 W12
Tuesday 20 March 2018
Wednesday 21 March 2018
Thursday 22 March 2018
Friday 23 March 2018
Saturday 24 March 2018
Sunday 25 March 2018
其中 org-timeline 显示了日常任务的详细信息
Thursday 22 March 2018
Scheduled: DONE [#A] do this y'day
-------------------------------------------------------------------------------
Friday 23 March 2018
Scheduled: IN PROGRESS [#A] scheduled today and deadline in 2 days
Scheduled: TODO [#B] scheduled for today, priority B
Scheduled: TODO [#C] do this today if I get time
Saturday 24 March 2018
Scheduled: TODO [#A] do this tomorrow
Sunday 25 March 2018
Deadline: IN PROGRESS [#A] scheduled today and deadline in 2 days
Deadline: TODO [#A] deadline in 2 days and not scheduled
[... 4 empty days omitted]
Thursday 29 March 2018
Scheduled: TODO [#A] scheduled for monday
Friday 30 March 2018
Saturday 31 March 2018
Deadline: TODO [#A] deadline in 10 days and not scheduled
问:如何让 org-agenda-list 正常工作?
而且我安装后
M-x package-install org-edna
根据一些在线建议,我还丢失了 org-timeline 命令,我通过暴力应用 "apt remove emacs" 和 "apt install emacs" 恢复了它.
问:任何人都可以向我解释为什么我丢失了 org-timeline 命令吗?
谢谢。
检查:C-h v org-agenda-files
。如果你的文件不在那里,当你的文件在缓冲区中打开时,使用 M-x org-agenda-file-to-front
。现在尝试 M-x org-agenda
。您可以再次检查 C-h v org-agenda-files
,您会在那里找到您的文件。