emacs自动完成模式的颜色模式

otm*_*otm 3 python emacs autocomplete jedi

在此处输入图片说明

我在python模式下使用自动完成+绝地武士

而且我在徘徊如何更改弹出菜单中第二列的颜色?黄色的:“ 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")
Run Code Online (Sandbox Code Playgroud)

谢谢!

jua*_*eon 5

它们不是自动完成的面孔,而是“弹出面孔”。

您要寻找的第一张脸是 popup-summary-face

您要更改的第二张脸(背景为黄色的脸)为 popup-tip-face

只要做一个M-x customize-face RET popup-summary-face,popup-tip-face,你就可以和他们一起玩。