如何在组织内部的 4 个议程中使用有组织的日程安排 (emacs)

卢卡斯·法瓦罗·博尔萨托

是否已经为 ORG (emacs) 编写了一些有助于创建艾森豪威尔矩阵的东西?

四象限:紧急重要、紧急不重要、不紧急但重要、不重要也不紧急 我知道可以在议程中创建 4 个不同的文件,或者做一些工作,但是可以使用 ORG 的议程将它们分成 4 个象限,如上图所示?

卢卡斯·法瓦罗·博尔萨托

只是为了提供一种仅基于优先级来组织任务的替代方法......我喜欢这个,因为让我决定何时更改任务类别(不是使用 DEADLINE 自动):

;About the 2 elisp lines below: If you want to send items without explicit 
;priorities to the bottom of the list you have to set org-default-priority to the 
;value of org-lowest-priority). I did this to make recognize that: PRIORITY=0 are 
;items without explicit priorities (not A, B or C, but just TODO)
(setq org-lowest-priority ?E)
(setq org-default-priority ?E)

(add-to-list 'org-agenda-custom-commands
             '("e" "Eisenhower matrix"
               ((tags-todo
                 "+PRIORITY=\"A\""
                 ((org-agenda-overriding-header "Urgent and important")))
                (tags-todo
                 "+PRIORITY=\"B\""
                 ((org-agenda-overriding-header "Important but not urgent")))
                (tags-todo
                 "+PRIORITY=\"C\""
                 ((org-agenda-overriding-header "Urgent but not important")))
                (tags-todo
         "+PRIORITY=0-PRIORITY=\"A\"-PRIORITY=\"B\"-PRIORITY=\"C\""
                 ((org-agenda-overriding-header "Neither important nor urgent"))))
               nil))  

使用它,以下组织模式文件:

* TODO [#A] This is important and urgent
DEADLINE: <2021-03-11 Thu>
* TODO [#A] This is important but not urgent
DEADLINE: <2021-03-13 Sat>
* TODO This has no priority but is urgent
DEADLINE: <2021-03-11 Thu>
* TODO [#B] This has medium priority but is urgent
DEADLINE: <2021-03-11 Thu>
* TODO [#C] This has low priority but is urgent
DEADLINE: <2021-03-11 Thu>
* TODO [#A] This is important but has no deadline
* TODO This has no priority and is not urgent
DEADLINE: <2021-03-13 Sat>
* TODO [#B] This has medium priority and is not urgent
DEADLINE: <2021-03-13 Sat>
* TODO [#C] This has low priority and is not urgent
DEADLINE: <2021-03-13 Sat>
* TODO This has no priority and no deadline
* TODO [#B] This has medium priority and no deadline
* TODO [#C] This has low priority and no deadline

看起来像这样:

Urgent and important
  refile:     TODO [#A] This is important and not urgent: ver como adicionar os aniversários no ORG
  refile:     TODO [#A] This is important and urgent
  refile:     TODO [#A] This is important but not urgent
  refile:     TODO [#A] This is important but has no deadline

=============================================================================================================================
Important but not urgent
  refile:     TODO [#B] This has medium priority but is urgent
  refile:     TODO [#B] This has medium priority and is not urgent
  refile:     TODO [#B] This has medium priority and no deadline

=============================================================================================================================
Urgent but not important
  refile:     TODO [#C] This has low priority but is urgent
  refile:     TODO [#C] This has low priority and is not urgent
  refile:     TODO [#C] This has low priority and no deadline

=============================================================================================================================
Neither important nor urgent
  refile:     TODO This has no priority but is urgent
  refile:     TODO This has no priority and is not urgent
  refile:     TODO This has no priority and no deadline

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章

goroutine日程安排如何与GOMAXPROCS一起使用?

在Emacs组织模式下,如何在组织标题下重新归档突出显示的文本?

在Emacs组织模式下设置个人Wiki

如何在Emacs中阅读组织模式文档?

emacs时间戳的组织模式语言

Emacs组织模式下的编号标题

如何在emacs组织模式下设置变量值?

Emacs组织模式:在另一个src块中使用src块的结果

如何在Emacs组织模式下养成每天应执行固定次数的习惯

如何在Emacs的组织模式下在“源块”的“#+ RESULTS”预览输出周围添加“#+ ATTR_HTML”?

emacs>组织模式>议程-始终使用当前缓冲区

Emacs组织模式:时钟表配置

Emacs组织模式配置

Emacs组织模式作为工作日记

Emacs组织模式:在计划项目且有截止日期时,如何避免议程中出现重复行

如何在组织模式下刷新标签列表而不关闭和重新打开emacs

如何在启动过程中加载emacs组织模式设置?

定期在Emacs中导出组织议程视图

Emacs填充列弄乱了组织议程和日历中的格式?

Emacs组织模式捕获,无需扩展

Emacs组织模式导出减价

Emacs斜体组织模式

Emacs组织模式-格式源块

Emacs组织模式插入多个图像

带有组织议程的字体锁不起作用

Emacs组织模式-如何在不挂起Emacs的情况下运行具有后台进程的Shell脚本

从一些组织文件生成emacs组织议程视图

将 docx 文件导入 emacs 组织模式

如何在组织模式(emacs)中创建子标题?