Answers:
用于突出显示所选项目的面部头盔的名称为helm-selection
。你可以只改变任何脸部的背景颜色set-background-color
:(set-background-color 'helm-selection "purple")
。您也可以set-face-attribute
这样使用:
(set-face-attribute 'helm-selection nil
:background "purple"
:foreground "black")
如果您还想同时设置其他属性。
init.el
文件中效果很好吗?虽然无法在另一个加载的文件中工作?我将这些代码放入helm-c.el
和中(load "~/.emacs.d/config/helm-c.el")
。没用
helm-colors
搜索包的可用面。例如,如果要搜索Helm的所有面孔,只需在的提示中键入“ helm-” helm-colors
。
C-u C-x =
并查看存在的面孔。然后,您可以M-x customize-face
在大多数情况下使用它来设置颜色;但是,该规则也有一些例外。有时,在同一位置可能会出现一张以上的脸,这就是为什么我建议在更改似乎是最可能的选择之前先查看那里的情况。