Home > Software engineering >  Highlight of the current open file in VSCode
Highlight of the current open file in VSCode

Time:11-26

Is there a way to highlight the current file open selected for edition in VSCode? Some themes show a underline in diferent color. But I want that caractheristic in the default theme

enter image description here

CodePudding user response:

You can modify any themes for Visual Studio Code.

  1. Open the settings.json file.
  • Open the command palette using F1
  • Type "open user settings json"
  1. Add the following parameters in the opened file:

    "workbench.colorCustomizations": { "tab.activeBorderTop": "yourColor" }

  2. Save the changes

enter image description here

P.S. You could see in the attached screenshot that the color of the top border in my active tab already changed. You could find many different options to modify visual stuff.

  • Related