Variable: org-auto-align-tags

org-auto-align-tags is a customizable variable defined in org.el.gz.

Value

t

Documentation

Non-nil keeps tags aligned when modifying headlines.

Some operations (i.e. demoting) change the length of a headline and therefore shift the tags around. With this option turned on, after each such operation the tags are again aligned to org-tags-column.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-auto-align-tags t
  "Non-nil keeps tags aligned when modifying headlines.
Some operations (i.e. demoting) change the length of a headline and
therefore shift the tags around.  With this option turned on, after
each such operation the tags are again aligned to `org-tags-column'."
  :group 'org-tags
  :type 'boolean)