Home

Awesome

org-tag-cloud

This package allows you to easily generate, or update, a table of all the tags you've used within a particular org-mode file.

Installation / Usage

In the future you can update your tag-cloud by running M-x org-tag-cloud-update. When you save your document in the future any tag-cloud will be automatically updated.

Tag Search Results

The table will have a clickable entry, which will show you entries matching the given tag. By default this will prompt you to permit the execution.

You can avoid this via:

(defun skx-org-mode-hook-eval-ok ()
    (make-variable-buffer-local 'org-confirm-elisp-link-function)
    (setq org-confirm-elisp-link-function nil))

(add-hook 'org-mode-hook 'skx-org-mode-hook-eval-ok)