Variable: org-agenda-tags-column

org-agenda-tags-column is a customizable variable defined in org-agenda.el.gz.

Value

auto

Documentation

Shift tags in agenda items to this column.

If set to auto, tags will be automatically aligned to the right edge of the window.

If set to a positive number, tags will be left-aligned to that column. If set to a negative number, tags will be right-aligned to that column. For example, -80 works well for a normal 80 character screen.

This variable was added, or its default value changed, in Org version
9.1.

Aliases

org-agenda-align-tags-to-column

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-tags-column 'auto
  "Shift tags in agenda items to this column.
If set to `auto', tags will be automatically aligned to the right
edge of the window.

If set to a positive number, tags will be left-aligned to that
column.  If set to a negative number, tags will be right-aligned
to that column.  For example, -80 works well for a normal 80
character screen."
  :group 'org-agenda-line-format
  :type '(choice
	  (const :tag "Automatically align to right edge of window" auto)
	  (integer :tag "Specific column" -80))
  :package-version '(Org . "9.1")
  :version "26.1")