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
51bb8ec#r113996771
I spent 30 minutes trying to override this in the theme. It's not over-rideable.
Example returning a themeable color vs. hardcoded from microsoft/vscode#78660:
const vscode = require('vscode'); function activate(context) { var decorator = vscode.window.createTextEditorDecorationType( { color: new vscode.ThemeColor('editor.selectionForeground'), backgroundColor: new vscode.ThemeColor('editor.selectionBackground') }); context.subscriptions.push( vscode.commands.registerCommand('extension.decoratorselect', () => { const editor = vscode.window.activeTextEditor; if (!editor) { return; } editor.setDecorations(decorator, [new vscode.Range(new vscode.Position(1, 0), new vscode.Position(1, 20))]); }) ); }; function deactivate() {} module.exports = { activate, deactivate }
The text was updated successfully, but these errors were encountered:
This is a good idea and will be done.
Sorry, something went wrong.
Issue #119 Please do not hard code colors.
442c698
9d2b7ef
This is ready to text in v0.9.1
Tested and worked for the color, but now new issue with bold #120
Making this one done.
LordDurus
No branches or pull requests
51bb8ec#r113996771
I spent 30 minutes trying to override this in the theme. It's not over-rideable.

Example returning a themeable color vs. hardcoded from
microsoft/vscode#78660:
The text was updated successfully, but these errors were encountered: