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
CodePudding user response:
You can modify any themes for Visual Studio Code.
- Open the
settings.json
file.
- Open the command palette using F1
- Type "open user settings json"
Add the following parameters in the opened file:
"workbench.colorCustomizations": { "tab.activeBorderTop": "yourColor" }
Save the changes
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.