Home > Back-end >  Colorized tabs in JetBrains Rider plugin?
Colorized tabs in JetBrains Rider plugin?

Time:08-27

In Visual Studio you can have per-project colorized tabs with the Productivity Power Tools. It basically paints the tabs of the same project in the same color. Which makes the navigation a bit easier. It also looks like VS now supports it out of the box.

Is there a JetBrains (Rider) plugin that does the same?

CodePudding user response:

I don't know if there is something that does it automatically, but you can do it "manually": https://www.jetbrains.com/help/rider/Configuring_Scopes_and_File_Colors.html

  1. Define your scopes in File | Settings... | Appearance & Behavior | Scopes
  2. In File | Settings... | Appearance & Behavior | File Colors you can colorize the tabs by scope.

I had to save the settings multiple time to see the UI refresh.

  • Related