From: Bruno Barbier <brubar.cs@gmail.com>
To: Heime <heimeborgia@protonmail.com>, Heime <heimeborgia@protonmail.com>
Cc: Heime via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org>
Subject: Re: Printing coloured strings in help-buffer
Date: Sun, 14 Apr 2024 08:55:38 +0200 [thread overview]
Message-ID: <661b7dec.050a0220.af06d.4a77@mx.google.com> (raw)
In-Reply-To: <SViWpgMhT1j41YbKUA-SszPpU9Haobv80imotJRLfUgPe5tpV-Ol1aIcHgMot9QZxUEWWI_cyv427CTJRbtVn0BgfUFezwU2VGFoIhcfkGk=@protonmail.com>
Heime <heimeborgia@protonmail.com> writes:
> Sent with Proton Mail secure email.
>
> On Sunday, April 14th, 2024 at 10:20 AM, Heime <heimeborgia@protonmail.com> wrote:
>
>> How can I print text with colour? Have made the following and want
>> vcname and vcfile to print in colour, in the help buffer.
>>
>>
>> (defun gali-intro (vcname vcfile)
>> "TODO"
>>
>> (princ
>> (concat
>> "`" vcname "' is a variable defined in` " vcfile "'.\n\n"
>> "Its description is shown below.\n\n")) )
>>
>> (defun gali-vconst ()
>> (with-help-window (help-buffer)
>> (gali-intro "gali-minicompl" "gali.el" )))
>
> Have made the following test but the colour is not being activated
>
> (defun sangali-defcon (vcname color)
> (insert (propertize vcname 'face '(:foreground color))) )
If Font Lock mode is enabled, you need to use 'font-lock-face, see:
(info "(elisp) Special Properties")
The following works for me, in the scratch buffer:
(with-current-buffer "*scratch*"
(insert (propertize "hello" 'font-lock-face '(:foreground "blue"))))
You can check what face is applied, calling `describe-char'.
Bruno
prev parent reply other threads:[~2024-04-14 6:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-13 22:20 Printing coloured strings in help-buffer Heime
2024-04-13 23:21 ` Heime
2024-04-14 6:55 ` Bruno Barbier [this message]
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.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=661b7dec.050a0220.af06d.4a77@mx.google.com \
--to=brubar.cs@gmail.com \
--cc=heimeborgia@protonmail.com \
--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.
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).