因此,我广泛使用org-mode来满足我的日常TODO要求。我想知道我是否也可以有效地使用它来记笔记。我基本上想要的是存储带有标签的笔记,然后想要通过标签搜索这些笔记。例如。如果我有这样的东西
* Heading 1
** Note 1 :tag1:tag2:
Note 1 details
** Note 2 :tag3:
Note 2 details
* Heading 2
** Note 3
** Note 4 :tag1:
Note 4 details
然后我搜索tag1,我应该有类似的东西 -
* Heading 1
** Note 1 :tag1:tag2:
Note 1 details
* Heading 2
** Note 4 :tag1:
Note 4 details
如果不将文件添加到我的议程中,我希望能够这样做。 (我可能有几个这样的笔记,我只想一次搜索当前文件。)
是否有一种简单(或不那么容易)的方式来完成这种组织模式?
答案 0 :(得分:9)
以下功能应提供您想要的结果。
(defun zin/org-tag-match-context (&optional todo-only match)
"Identical search to `org-match-sparse-tree', but shows the content of the matches."
(interactive "P")
(org-prepare-agenda-buffers (list (current-buffer)))
(org-overview)
(org-remove-occur-highlights)
(org-scan-tags '(progn (org-show-entry)
(org-show-context))
(cdr (org-make-tags-matcher match)) todo-only))
答案 1 :(得分:8)
您可以使用代码搜索(C-c / m tag1 <ret>
)。文档:
http://orgmode.org/manual/Tag-searches.html
这将创建一个稀疏树,仅显示包含:tag1:
的标题,但不会像您的示例中那样自动显示该标题的内容。