From: Alex <agrambot@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Using :align-to with non-spaces
Date: Tue, 10 Oct 2017 12:09:53 -0600 [thread overview]
Message-ID: <87mv4ydgcu.fsf@gmail.com> (raw)
In-Reply-To: <83fuarqzd9.fsf@gnu.org> (Eli Zaretskii's message of "Tue, 10 Oct 2017 09:40:50 +0300")
Eli Zaretskii <eliz@gnu.org> writes:
>> From: Alex <agrambot@gmail.com>
>> Cc: eliz@gnu.org
>> Date: Sun, 08 Oct 2017 23:22:59 -0600
>>
>> (setq header-line-format
>> (concat (propertize " "
>> 'display
>> '(space . (:align-to 0)))
>> "test"))
>>
>> (setq header-line-format
>> (propertize "test"
>> 'display
>> '(space . (:align-to 0))))
>>
>> It's not a big deal, but it's makes things look cleaner, especially when
>> the string in question is also being propertized.
>
> The 'space' display property is of the "replacing" kind, i.e. it
> completely replaces the text which has that property. So implementing
> what you want would need a new property at least. Or maybe you could
> use the '(space-width FACTOR)' display spec instead, and prepending a
> single SPC character that precedes the string characters? (This
> assumes the string itself doesn't have embedded SPC characters; if it
> does, put this display property only on the initial SPC character.)
I guess I replied to this part in Bug#28771 (sorry for fragmenting the
discussion).
> FWIW, having a 'space' display property on some whitespace character
> sounds very intuitive to me, since this feature was supposed to be
> used to display white space subject to pixel-level resolution
> considerations of a GUI frame.
It does to me as well, but it would be nice to have similar
functionality to :align-to in arbitrary strings.
Something like the following, that would align the string similar to
:align-to does a space:
(propertize "test"
'display
'(align-to EXPR))
where EXPR can be the same as in :align-to.
>> P.S. I noticed that the above does not take into account the space taken
>> by `display-line-numbers'.
>
> That's because it isn't clear whether it should be done for every
> header-line. For example, the Info mode will certainly not want
> that. So this has to be done by the Lisp program, because only it
> knows whether the text in the header line should be aligned with the
> rest of buffer text.
I don't understand. The Info mode header isn't aligned at all (for
example, toggling fringe and linum-mode (for the margin) doesn't change
the position of the info header). Only headers with an `:align-to num'
property would be affected.
Here is what the manual says about :align-to:
For example, ‘:align-to 0’ in a header-line aligns with the first
text column in the text area.
I would consider "the first text column" to be column 0, so the current
behaviour is incorrect.
If line-number display is treated specially, then there should also be a
`line-number' element for the :align-to and :width specs.
next prev parent reply other threads:[~2017-10-10 18:09 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-09 5:22 Using :align-to with non-spaces Alex
2017-10-10 6:40 ` Eli Zaretskii
2017-10-10 18:09 ` Alex [this message]
2017-10-10 18:27 ` Eli Zaretskii
2017-10-10 19:18 ` Alex
2017-10-10 20:01 ` Eli Zaretskii
2017-10-11 0:41 ` Alex
2017-10-11 10:38 ` Eli Zaretskii
2017-10-12 0:47 ` Stefan Monnier
2017-10-12 7:10 ` Eli Zaretskii
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=87mv4ydgcu.fsf@gmail.com \
--to=agrambot@gmail.com \
--cc=eliz@gnu.org \
--cc=help-gnu-emacs@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.