VSCode: 集成终端选择的行未突出显示
VSCode: Integrated terminal selected lines not highlighted
在 VSCode 的集成终端中,即使我选择了如上图所示的 print -c "print('Hello World')"
行,它也不会像 blue[=22 那样突出显示=] color 在我的 iTerm2 终端中,如下面的屏幕截图所示
知道我应该更改哪些设置才能达到同样的效果吗?
在你的settings.json
中使用这个colorCustomization
:
{
"workbench.colorCustomizations": {
"terminal.selectionBackground": "#f00"
}
}
在 VSCode 的集成终端中,即使我选择了如上图所示的 print -c "print('Hello World')"
行,它也不会像 blue[=22 那样突出显示=] color 在我的 iTerm2 终端中,如下面的屏幕截图所示
知道我应该更改哪些设置才能达到同样的效果吗?
在你的settings.json
中使用这个colorCustomization
:
{
"workbench.colorCustomizations": {
"terminal.selectionBackground": "#f00"
}
}