Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Granular Status Bar item color control #9232

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Conversation

ColinMelendez
Copy link

@ColinMelendez ColinMelendez commented Sep 1, 2024

What this PR does / why we need it:
This PR adds the ability to specify colors for the extension's status bar item text directly via theme settings with different colors for each mode. Example:

vim-mode-color-demo

This is a nice feature for those who would like to have some easy visual indication of the current mode without having to color the entire status bar.

The approach provides customization options in a more idiomatic way for VS Code; allowing users to specify the color options as part of a theme or under the standard "workbench.colorCustomizations" setting.

The original method of coloring the status bar is unchanged and unaffected by this PR - this is only an additional option that users can take advantage of by specifying color values for any of:

        "statusBarItem.vimMode.Normal"
        "statusBarItem.vimMode.Insert"
        "statusBarItem.vimMode.Visual"
        "statusBarItem.vimMode.VisualBlock"
        "statusBarItem.vimMode.VisualLine"
        "statusBarItem.vimMode.Replace"
        "statusBarItem.vimMode.EasyMotionMode"
        "statusBarItem.vimMode.EasyMotionInputMode"
        "statusBarItem.vimMode.SurroundInputMode"
        "statusBarItem.vimMode.Disabled"
        "statusBarItem.vimMode.SearchInProgressMode"
        "statusBarItem.vimMode.CommandlineInProgress"

under "workbench.colorCustomizations" in their settings.

All of the colors default to "statusBar.foreground" if unspecified.

Which issue(s) this PR fixes
resolves #8741

Special notes for your reviewer:
I can add a section to the readme if desired.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Status Bar *Item* Color Control
1 participant