search .org files have certain tags (#+tags:
or #+tags[]:
)
(load "org-more.el")
M-x org-more-list-of-tags RET
- List every
.org
files under a directory have certain tag(s). - These directory and tag(s) will be asked.
- List every
- Result will be shown as an org-mode buffer with links to matching files and its titles.
- License: MIT.
Let say we have an org file looks like this:
#+TAGS[]: a b c
#+tags: x y z
blah blah...
The above has tags: a, b, c, x, y and z. These syntaxes are called ”Per file keywords”.
org-more.el
does searching case-insensitively and support both
#+tags[]:
and #+tags:
. Also it gathers every tag lines of a
file.