Reputation: 1571
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
Upvotes: 1
Views: 820
Reputation: 66
You can modify any themes for Visual Studio Code.
settings.json
file.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.
Upvotes: 4