如何在 emacs 中全局禁用粗体(字体粗细)?

发布于 2024-08-17 11:33:41 字数 53 浏览 6 评论 0原文

我讨厌编码时使用粗体文本。是否可以在每个文件和 emacs 界面中禁用粗体文本(和下划线)?

I hate bold text while coding. Is it possible to disable bold text (and underline) in every single file and emacs's interface?

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

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

发布评论

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

评论(2

如若梦似彩虹 2024-08-24 11:33:41

最简单的方法可能是

(set-face-bold-p 'bold nil)

另一种可能性(也处理下划线)是在运行的 Emacs 会话中评估以下代码片段:

 (mapc
  (lambda (face)
    (set-face-attribute face nil :weight 'normal :underline nil))
  (face-list))

The easiest way is probably

(set-face-bold-p 'bold nil)

Another possibility, which also deals with underlines, would be to evaluate the following snippet in a running Emacs session:

 (mapc
  (lambda (face)
    (set-face-attribute face nil :weight 'normal :underline nil))
  (face-list))
慵挽 2024-08-24 11:33:41

如果您使用的是 Terminal.app,您还可以进入“首选项”->“设置”。对于您当前的设置,请转到“文本”组,然后取消选中“使用粗体字体”。屏幕截图如下:

alt text

If you are using Terminal.app, you can also go into your Preferences->Settings. For your current settings, go to the Text group and simply uncheck "Use bold fonts." Screenshot below:

alt text

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