mondersky / tabscolor-vscode

change the color of vscode tabs
https://marketplace.visualstudio.com/items?itemName=mondersky.tabscolor
MIT License
50 stars 10 forks source link
javascript js vscode vscode-extension

Total Installs

This extension may not work on some Macbooks

IMPORTANT NOTE : AFTER INSTALLING TABSCOLOR YOU MAY GET THE POPUP "YOUR CODE INSTALLATION IS CORRUPT..." UPON RESTART. JUST CLICK ON THE GEAR ICON AND CHOOSE DON'T SHOW AGAIN.

About tabscolor

tabsColor preview

This extension lets you color the background of your tabs either by right click, by filetype or by directory. Useful when working with multiple tabs. The extension is still in an experimental phase.

Quickstart

Install the extension, restart your vs code (not just reload), right click on any tab and select from the color menu

customize VSCode tab color by file types

example:

"tabsColor.byFileType": {
    "js": {
      "backgroundColor": "yellow",
      "fontColor": "black"
    }
  }

Add this to your VS Code user settings.json

customize VSCode tab color by directory path

example:

"tabsColor.byDirectory": {
  "C:\\wamp\\www\\my_project\\css": {
    "backgroundColor": "#00efff",
    "fontColor": "#ffffff"
  }
}

example 2 (partial path):

"tabsColor.byDirectory": {
  "\\my_project\\": {
    "backgroundColor": "#00efff",
    "fontColor": "#ffffff"
  }
}

Add this to your VS Code user settings.json

Set the active tab color

example:

"tabsColor.activeTab": {
  "backgroundColor": "yellow",
  "fontColor": "black"
}

Add this to your VS Code user settings.json

This extension can :

This extension can't (yet) :

Notes :

Available commands:

Don't hesitate to contribute to this extension.

TODO