需要帮助更改线条的颜色以及当您按 Ctrl + Shift + P 时在 VSCode 中显示 "Other Commands" 的位置
Need help changing the color of the line and where it says "Other Commands" in VSCode when you press Ctrl + Shift + P
这是命令面板的图像:
如果您想要更改命令面板示例中文本 other commands
的颜色,请使用此 colorCustomization
:
"workbench.colorCustomizations": {
"pickerGroup.foreground": "#ff0000"
}
在你的 settings.json
.
里面
pickerGroup.foreground
: 用于分组标签的快速选择器(快速打开)颜色。
来自 Theme Colors reference: Quick Picker Colors。另请参阅此引用以获取一般 workbench.colorCustomizations
信息。
other commands
是任何快速选择面板中下一组条目的标签,因此 colorCustomization
将更改所有快速选择面板的标签,例如 Ctrl+P
。
这是命令面板的图像:
如果您想要更改命令面板示例中文本 other commands
的颜色,请使用此 colorCustomization
:
"workbench.colorCustomizations": {
"pickerGroup.foreground": "#ff0000"
}
在你的 settings.json
.
pickerGroup.foreground
: 用于分组标签的快速选择器(快速打开)颜色。
来自 Theme Colors reference: Quick Picker Colors。另请参阅此引用以获取一般 workbench.colorCustomizations
信息。
other commands
是任何快速选择面板中下一组条目的标签,因此 colorCustomization
将更改所有快速选择面板的标签,例如 Ctrl+P
。