Home > Blockchain >  Visual Studio Code: Strange border - outline on greek characters
Visual Studio Code: Strange border - outline on greek characters

Time:12-10

Today i just opened my Visual Studio Code to continue my project and i realised that almost every greek character has a border as it is shown in the picture and it is very annoying. Is it an update or something? Last night everything was normal. Do you know how can i fix this and remove the border?

An example of what i am describing above

CodePudding user response:

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

CodePudding user response:

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"
}
  • Related