我在python模式下使用auto-complete + jedi
我在徘徊如何改变弹出菜单中第二列的颜色? 黄色的:“功能: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")
谢谢!
答案 0 :(得分:3)
它们不是自动完成的面孔,而是"弹出面孔"。
您要找的第一张脸是popup-summary-face
您要更改的第二张脸(具有黄色背景的脸)是popup-tip-face
只需做一个M-x customize-face RET popup-summary-face,popup-tip-face
就可以玩它们了。