11

Today I opened Visual Studio Code to continue my project and I realized that almost every Greek character has a border as it is shown in the picture.

  • What is this?
  • How can I disable it?

An example of what I am describing above

Christopher Oezbek
  • 23,994
  • 6
  • 61
  • 85
Scissors38th
  • 127
  • 10

2 Answers2

13

These are caused by these unicode highlighting settings that are new to v1.63:

unicode highlight options

You can try disabling them or you can change the color with these colorCustomizations in your settings.json:

 "workbench.colorCustomizations": {
    "editorUnicodeHighlight.border": "#0000",  // set to transparent
    "minimap.unicodeHighlight": "#0000",
    "editorOverviewRuler.unicodeForeground": "#0000"
}
Christopher Oezbek
  • 23,994
  • 6
  • 61
  • 85
Mark
  • 143,421
  • 24
  • 428
  • 436
0

Replying to myself, i downgraded to 1.62.2 version and everything is back to normal.

Scissors38th
  • 127
  • 10