/org-more

search .org files have certain tags (`#+tags:` or `#+tags[]:`)

Primary LanguagePerlOtherNOASSERTION

search .org files have certain tags (#+tags: or #+tags[]:)

org-more.el

  1. (load "org-more.el")
  2. M-x org-more-list-of-tags RET
    1. List every .org files under a directory have certain tag(s).
    2. These directory and tag(s) will be asked.
  3. Result will be shown as an org-mode buffer with links to matching files and its titles.
  4. License: MIT.

What are tags ?

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.