We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The VSCodeVim team prioritizes issues based on reaction count.
Is this a BUG REPORT or FEATURE REQUEST? (choose one): FEATURE REQUEST
Currently the extension changes the colour of the whole status bar. It would be great to have an option to just change the mode string.
The text was updated successfully, but these errors were encountered:
What do you mean? Do you mean only change the color there or the actual text?
Sorry, something went wrong.
Something like this:
I did a quick patch to out/src/mode/modeHandler.js:
out/src/mode/modeHandler.js
setStatusBarText(text) { if (!ModeHandler._statusBarItem) { ModeHandler._statusBarItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Left); } ModeHandler._statusBarItem.text = text || ''; if (this._vimState.currentModeName().toLowerCase() === 'insert' || this._vimState.currentModeName().toLowerCase() === 'replace') { ModeHandler._statusBarItem.color = 'red'; } else if (this._vimState.currentModeName().toLowerCase().startsWith('visual')) { ModeHandler._statusBarItem.color = 'orange'; } else { ModeHandler._statusBarItem.color = 'white'; } ModeHandler._statusBarItem.show(); }
From reading the VS Code API docs, you can only set the foreground colour. :-(
Closing this issue given the age of the bug and the lack of activity.
No branches or pull requests
The VSCodeVim team prioritizes issues based on reaction count.
Is this a BUG REPORT or FEATURE REQUEST? (choose one): FEATURE REQUEST
Currently the extension changes the colour of the whole status bar. It would be great to have an option to just change the mode string.
The text was updated successfully, but these errors were encountered: