在 Emacs 中,如何在迷你缓冲区中显示带有字体属性的消息?

发布于 2024-08-30 16:11:50 字数 48 浏览 7 评论 0原文

我想在迷你缓冲区中显示彩色文本字符串,但是当我使用“消息”函数时,文本属性被剥离。

I want to display a colored string of text in the minibuffer, but when I use the 'message' function, the text-properties of are stripped.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩人痒 2024-09-06 16:11:50

对我有用:

(message "%s" (propertize "foo" 'face '(:foreground "red")))

您可能有 (message (propertize ...)) ,它将属性化字符串解释为格式控制字符串,因此剥离了其属性。

Works for me:

(message "%s" (propertize "foo" 'face '(:foreground "red")))

You probably had (message (propertize ...)), which interprets the propertized string as a format control string, hence stripped of its properties.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文