奇怪的边框 - 自 v1.63 VS Code 起希腊字符的轮廓

Sci*_*8th 11 visual-studio-code

今天我打开 Visual Studio Code 继续我的项目,我意识到几乎每个希腊字符都有一个边框,如图所示。

  • 这是什么?
  • 我怎样才能禁用它?

我上面描述的一个例子

Mar*_*ark 13

unicode highlighting这些是由v1.63 新增的这些设置引起的:

unicode 突出显示选项

colorCustomizations您可以尝试禁用它们,或者您可以使用以下内容更改颜色settings.json

 "workbench.colorCustomizations": {
    "editorUnicodeHighlight.border": "#0000",  // set to transparent
    "minimap.unicodeHighlight": "#0000",
    "editorOverviewRuler.unicodeForeground": "#0000"
}
Run Code Online (Sandbox Code Playgroud)


Sci*_*8th 0

回复我自己,我降级到1.62.2版本,一切都恢复正常。