Function: org-fix-tags-on-the-fly
org-fix-tags-on-the-fly is a byte-compiled function defined in
org.el.gz.
Signature
(org-fix-tags-on-the-fly)
Documentation
Align tags in headline at point.
Unlike org-align-tags, this function does nothing if point is
either not currently on a tagged headline or on a tag.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-fix-tags-on-the-fly ()
"Align tags in headline at point.
Unlike `org-align-tags', this function does nothing if point is
either not currently on a tagged headline or on a tag."
(when (and (org-match-line org-tag-line-re)
(< (point) (match-beginning 1)))
(org-align-tags)))