IT Snippet: VS code tab color
VS Code is my current editor of choice in the workplace as it is already pre-approved by the client and I dont need to jump through IT exception hoops to get PsPad allowed to be used. Its a bit bloated for my taste but it is starting to grow on me as I get used to the keybindings.
One thing that I am having problems is tracking which tab I am currently using. I normally have a dozen files open at any given time, and that number increases when I do file-by-file comparison within the VS Code editor. A quick search and the flow and configuration snippet allows me to change the color of the active file tab to the color of my choice.
- control+shift+P , then select the “Open User Settings (JSON)” option
- Add (or update) the following snippet in the outermost/parent brace.
"workbench.colorCustomizations": {
"tab.activeBackground": "#00AA00" #for green
}
Save and it automatically gets applied!




