From: "Michaël Cadilhac" <michael@cadilhac.name>
To: Org-Mode mailing list <emacs-orgmode@gnu.org>
Subject: Proposal: do not align tags in Agenda
Date: Thu, 24 Sep 2020 11:16:16 -0500 [thread overview]
Message-ID: <CADt3fpOgieOFa7b8Zmhh6RY4LaWm2AB5dVDo41p0d6T1_GpsBw@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 437 bytes --]
Hello all,
I have a wide screen, which makes right edge alignment of tags in the
agenda inconvenient (they're hard to match with the main entry).
Setting org-agenda-tags-column to a specific column overwrites part of
the entry, which is not optimal. I'd simply want the tag to be put
_after_ the entry. The attached patch is what I've been using for the
past month, and it seems to work alright.
Thoughts for/against?
Stay safe,
M.
[-- Attachment #2: do-not-align.diff --]
[-- Type: text/x-patch, Size: 1380 bytes --]
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index e4a334dbd..792348e4c 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -1912,6 +1912,7 @@ character screen."
:group 'org-agenda-line-format
:type '(choice
(const :tag "Automatically align to right edge of window" auto)
+ (const :tag "Do not align" nil)
(integer :tag "Specific column" -80))
:package-version '(Org . "9.1")
:version "26.1")
@@ -9073,13 +9074,20 @@ current line."
(if (memq 'org-tag prop)
prop
(cons 'org-tag prop))))))
- (setq l (string-width (match-string 1))
- c (if (< org-agenda-tags-column 0)
- (- (abs org-agenda-tags-column) l)
- org-agenda-tags-column))
+ (when org-agenda-tags-column
+ (setq l (string-width (match-string 1))
+ c (if (< org-agenda-tags-column 0)
+ (- (abs org-agenda-tags-column) l)
+ org-agenda-tags-column)))
(goto-char (match-beginning 1))
(delete-region (save-excursion (skip-chars-backward " \t") (point))
(point))
+ (unless org-agenda-tags-column
+ (setq c (if (get-text-property (point) 'org-habit-p)
+ (+ 1 org-habit-graph-column
+ org-habit-preceding-days
+ org-habit-following-days)
+ (current-column))))
(insert (org-add-props
(make-string (max 1 (- c (current-column))) ?\s)
(plist-put (copy-sequence (text-properties-at (point)))
next reply other threads:[~2020-09-24 16:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-24 16:16 Michaël Cadilhac [this message]
2020-09-30 3:36 ` Proposal: do not align tags in Agenda Kyle Meyer
2020-10-04 16:03 ` Michaël Cadilhac
2020-10-29 2:21 ` Kyle Meyer
-- strict thread matches above, loose matches on Subject: below --
2020-10-05 16:59 No Wayman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CADt3fpOgieOFa7b8Zmhh6RY4LaWm2AB5dVDo41p0d6T1_GpsBw@mail.gmail.com \
--to=michael@cadilhac.name \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).