Emacs自动补全模式的颜色方案

3

enter image description here

我正在使用Python模式下的自动补全+Jedi插件

我想知道如何更改弹出菜单中第二列的颜色?就是黄色的那一列:"function:posix.closerange"

此外,右侧的黄色弹出窗口叫什么?如何更改它的颜色?

我找到了这些配置,但它们不是我想要的。

(set-face-background 'ac-candidate-face "white")
(set-face-foreground 'ac-candidate-face "black")
;(set-face-underline  'ac-candidate-face "blue")

;(set-face-background 'ac-selection-face "cornflowerblue")
(set-face-foreground 'ac-completion-face "purple")
;(set-face-background 'ac-completion-face "green")

谢谢!

1个回答

5

这些不是自动完成的面孔,而是"弹出面孔"。

你要找的第一个面孔是popup-summary-face

你要更改的第二个面孔(黄色背景)是popup-tip-face

只需执行M-x customize-face RET popup-summary-face,popup-tip-face,即可对它们进行调整。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接