gpt4 book ai didi

emacs - 如何为 Emacs 取消空白模式的前景色

转载 作者:行者123 更新时间:2023-12-04 18:10:57 31 4
gpt4 key购买 nike

在编程文件中,我使用空白模式来突出显示选项卡和长行。默认突出显示对我来说太花哨了。我只想用灰色背景突出显示它们并保留字体应该使用的任何正常颜色。我怎么能这样设置?

以下设置不起作用。我希望超过 80 列的代码显示为淡黄色,作为快照中 80 列内的字符。

;; face for long lines' tails
(set-face-attribute 'whitespace-line nil
:background "#555"
:weight 'bold)

;; face for Tabs
(set-face-attribute 'whitespace-tab nil
:background "#555"
:weight 'bold)

whitespace-mode

最佳答案

set-face-attribute仅更改您指定的属性。

套装:foregroundnil :

(set-face-attribute 'whitespace-line nil
:foreground nil
:background "#555"
:weight 'bold)

关于emacs - 如何为 Emacs 取消空白模式的前景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14636786/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com