Adam Porter <a...@alphapapa.net> writes: > Ok, I've updated the patch.
Thanks. A few more comments. > (org-agenda-align-tags): Handle automatic alignment > (org-agenda-tags-column): Add 'auto setting You're missing the file name in the entries above. Also, the entries should end in a period. > -(defcustom org-agenda-tags-column -80 > +(defcustom org-agenda-tags-column 'auto > "Shift tags in agenda items to this column. > -If this number is positive, it specifies the column. If it is negative, > -it means that the tags should be flushright to that column. For example, > --80 works well for a normal 80 character screen." > +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 'integer) > + :type '(choice > + (const :tag "Automatically align to right edge of window" auto) > + (integer :tag "Specific column" -80))) Since you're changing the default value, shouldn't you add appropriate values for the :version and :package-version keywords? It'd be good to mention this change in ORG-NEWS as well. -- Kyle