emacs autocomplete mod的颜色架构

2024-05-20 11:00:16 发布

您现在位置:Python中文网/ 问答频道 /正文

enter image description here

我在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")

谢谢!在


Tags: 函数auto颜色菜单模式completioncandidateac
1条回答
网友
1楼 · 发布于 2024-05-20 11:00:16

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

您要查找的第一个面是popup-summary-face

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

只要做一个M-x customize-face RET popup-summary-face,popup-tip-face,你就可以玩它们了。在

相关问题 更多 >