将字体设置为部分模型行

发布于 2024-11-10 00:44:17 字数 284 浏览 3 评论 0原文

如何在模型行中使用多种字体?例如,如果希望它看起来像

Line: 23 Size: 3000,

其中 LineSize 位于不同的位置字体比modeline字体大,应该如何

(setq-default mode-line-format '(
    "Line: %l Size: %i"
))

修改?

How can I use multiple fonts in the modeline? For example, If want it to look like

Line: 23 Size: 3000

with Line and Size in a different font than the modeline font, how should

(setq-default mode-line-format '(
    "Line: %l Size: %i"
))

be modified?

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

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

发布评论

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

评论(1

孤凫 2024-11-17 00:44:17

使用属性化。例如,要像示例中那样以粗体显示 Line:Size:

(setq-default mode-line-format `(
    ,(propertize "Line:" 'face 'bold)
    " %l "
    ,(propertize "Size:" 'face 'bold)
    " %i"
))

您可以使用 Mx list-faces-display 查看示例定义的面孔,或定义您自己的面孔。

为了将来参考,您可以查看您尝试使用 Ch v 自定义的任何变量的文档; mode-line-format 的帮助提到使用 propertize

Use propertize. For example, to get Line: and Size: in bold as in your example:

(setq-default mode-line-format `(
    ,(propertize "Line:" 'face 'bold)
    " %l "
    ,(propertize "Size:" 'face 'bold)
    " %i"
))

You can use M-x list-faces-display to see samples of defined faces, or define your own.

For future reference, you can take a look at the documentation for any variable you're trying to customize with C-h v; the help for mode-line-format mentions using propertize.

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