Function: org-agenda-show-tags
org-agenda-show-tags is an interactive and byte-compiled function
defined in org-agenda.el.gz.
Signature
(org-agenda-show-tags)
Documentation
Show the tags applicable to the current item.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-show-tags ()
"Show the tags applicable to the current item."
(interactive)
(let* ((tags (org-get-at-bol 'tags)))
(if tags
(message "Tags are :%s:"
(org-no-properties (mapconcat #'identity tags ":")))
(message "No tags associated with this line"))))