【问题标题】:Strange border - outline on greek characters since v1.63 VS Code奇怪的边框 - 自 v1.63 VS Code 以来的希腊字符轮廓 【发布时间】:2021-12-09 13:16:50 【问题描述】: 今天我打开 Visual Studio Code 继续我的项目,我意识到几乎每个希腊字符都有一个边框,如图所示。 这是什么? 如何禁用它? 【问题讨论】: 标签: visual-studio-code vscode-settings 【解决方案1】: 这些是由 v1.63 新增的这些 unicode highlighting 设置引起的: 您可以尝试禁用它们,或者您可以在 settings.json 中使用这些 colorCustomizations 更改颜色: "workbench.colorCustomizations": { "editorUnicodeHighlight.border": "#0000", // set to transparent "minimap.unicodeHighlight": "#0000", "editorOverviewRuler.unicodeForeground": "#0000" } 【讨论】: 我刚刚将上面的前两行添加到了我的 settings.json 中,它为希伯来语修复了它。 【解决方案2】: 回复自己,我降级到1.62.2版本,一切恢复正常。 【讨论】: