/tagger-emacs-wrapper

Primary LanguageEmacs LispGNU General Public License v3.0GPL-3.0

Tagger-Emacs-Wrapper

This is a wrapper that allows to call some functions from the tagger utility from the comfort of Emacs.

Installation and setup

This package is not (yet) in any of the official repositories.

To install it with use-package, clone the repository and add to your init file something like the following:

(use-package tagger
  :load-path "path/to/the/repository"
  :bind (("C-c 1" . #'tagger/search)
         ("C-c 2" . #'tagger/tags-all)
         ("C-c 3" . #'tagger/tags-file)
         ("C-c 4" . #'tagger/refile)
         ("C-c 5" . #'tagger/locate))
  :init (setq tagger/tagger-directory
              "path/to/your/directory")) ;; This must be set to ensure optimal functionality!

Contributing

Pull requests are welcome. Feel free to open an issue.