在 Emacs 中,如何在迷你缓冲区中显示带有字体属性的消息?
我想在迷你缓冲区中显示彩色文本字符串,但是当我使用“消息”函数时,文本属性被剥离。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我有用:
您可能有
(message (propertize ...))
,它将属性化字符串解释为格式控制字符串,因此剥离了其属性。Works for me:
You probably had
(message (propertize ...))
, which interprets the propertized string as a format control string, hence stripped of its properties.