第三部分 Note
Notes用来收集灵感,日记,事件,灵感,新闻,心情等,并使用单层层级不再往下细分,同时调用“标签”做分类管理,标签的快捷键为“C-c C-q”。
这样,org-capture 只需要管理两个Headings,Notes和Plan。
;;最后只保留Note和Plan两部分。
(defun my-org-goto-last-note-headline ()
"Move point to the last headline in file matching \"* Notes\"."
(end-of-buffer)
(re-search-backward "\\* Note"))
(defun my-org-goto-last-plan-headline ()
"Move point to the last he adline in file matching \"* Plans\"."
(end-of-buffer)
(re-search-backward "\\* Plan"))
(setq org-capture-templates
'(("n" "Note" entry
(file+function "~/Documents/OrgMode/ORG/main/todo.today.org"
my-org-goto-last-note-headline)
"* %i%? \n%T")
("p" "Plan" entry
(file+function "~/Documents/OrgMode/ORG/main/todo.today.org"
my-org-goto-last-plan-headline)
"* TODO %i%?")
))
;;短评, 此处原来设置的inactive timestamp没有一点儿道理.
其中Notes使用active-timestamp,则能从agenda中review当天所有的记录。 控制好冲动,不再多分其他headings,Notes下的heading不再分级。
Notes的工作流演示如下:
在Emacs上工作,突然有了想法,org-capture采集。
同时在今天的agenda中也能看到这一条:
第四部分
加了当日review的Heading,写在隐藏在Notes下面,会常常懒得写。