From: "Nicolas P. Rougier (inria)" <nicolas.rougier@inria.fr>
To: emacs-orgmode@gnu.org
Subject: Tags right alignment with font-lock
Date: Sat, 02 Dec 2023 12:28:28 +0100 [thread overview]
Message-ID: <m234wk24rq.fsf@inria.fr> (raw)
Hello,
I'm using font lock to have tags right aligned with the following
code:
;; Right alignment (char wise)
(add-to-list 'font-lock-extra-managed-props 'display)
(font-lock-add-keywords 'org-mode
`(("^\\*+.*?\\( \\)\\(:[[:alnum:]_@#%:]+:\\)$"
(1 `(face nil
display (space :align-to (- right 3
,(org-string-width
(match-string 2)))))
prepend))) t)
;; Right alignment (pixel wise)
;;(font-lock-add-keywords 'org-mode
;; `(("^\\*+.*?\\( \\)\\(:[[:alnum:]_@#%:]+:\\)$"
;; (1 `(face nil
;; display (space :align-to (- right 3
;; (,(org-string-width
(match-string 2)
t)))))
;; prepend))) t)
I've not tested it thoroughly but it seems to be working
reasonably well on my machine. It is pretty similar to the code
posted by Ihor Radchenko (thread on "variable-pitch-mode misaligns
org-mode heading tags") and I wonder if there are any drawback
with such techniques (too slow? does not work on all situations?)
Nicolas
--
Nicolas P. Rougier —— www.labri.fr/perso/nrougier
Institute of Neurodegenerative Diseases, Bordeaux
next reply other threads:[~2023-12-05 14:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-02 11:28 Nicolas P. Rougier (inria) [this message]
2023-12-08 15:45 ` Tags right alignment with font-lock Ihor Radchenko
2023-12-08 16:21 ` Nicolas P. Rougier (inria)
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m234wk24rq.fsf@inria.fr \
--to=nicolas.rougier@inria.fr \
--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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.