Merge branch 'release/0.1.1'
[org-seek.el.git] / README.md
blob54a5ee8a70beb8f1f3748a7a49e24a1b7fe47175
1 # org-seek.el
3 Searching Org-mode with search tools.
5 # Install #
7 - You can install this package through MELPA.
9 # Config #
11 ## use-package ##
13 ``` emacs-lisp
14 (use-package org-seek
15   :ensure t
16   :commands (org-seek-string org-seek-regexp org-seek-headlines)
17   )
18 ```
20 # Usage #
22 ## Use Cases ##
24 If you organize your knowledge wiki with Org-mode, and store them in a
25 directory, you may want to search like this:
27 - search through all Org files for a specific thing with `[M-x org-seek-string]`.
28 - search all Org files under current path by specify `[C-u]`.
29 - search with regular expression with `[M-x org-seek-regexp]`.
30 - search only org-mode headlines for quick search (because most user define a
31   short description with headline) with `[M-x org-seek-headlines]`.