VSCode - 更改资源管理器中活动项目的背景颜色

发布于 2025-01-11 01:12:07 字数 644 浏览 0 评论 0原文

我想在 VS code 中更改资源管理器中所选文件的背景颜色,我发现这个设置 list.activeSelectionBackground 您可以在图片中看到它确实有效。

输入图像描述这里

但问题是,它仅在我明确单击该文件时才起作用,但当我使用 Alt+tab 切换到其他文件时则不起作用,然后它会丢失即使实际选择了文件,背景颜色也是如此在资源管理器中。

Alt+tab 之后,它开始显示这样的选择背景,这是默认方式

在此处输入图像描述

我尝试了一些其他设置,例如 list.inactiveFocusBackgroundlist.focusBackground 但它们不起作用。

有什么想法吗?

I wanted to change the background color of the selected file in explorer in VS code and I found this setting list.activeSelectionBackground which you can see in the picture actually worked.

enter image description here

But the problem is that it only works when I click on the file explicitly but it doesn't when I switch to a different file using Alt+tab, then it looses the background color even when actually the file is selected in explorer.

After Alt+tab it starts showing the selection background like this, which is the default way

enter image description here

I tried some other settings like list.inactiveFocusBackground and list.focusBackground but they didn't work.

Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

╄→承喏 2025-01-18 01:12:07

看起来您想要

"workbench.colorCustomizations": {
  "list.inactiveSelectionBackground": "#fff",
  "list.activeSelectionBackground": "#fff"
}

将它们设置为相同的内容,这样无论该资源管理器项目选择是否处于活动状态,它都会显示相同的。

It looks like you want

"workbench.colorCustomizations": {
  "list.inactiveSelectionBackground": "#fff",
  "list.activeSelectionBackground": "#fff"
}

Just set them to the same thing so whether that Explorer item selection is active or not it will appear the same.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文