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

[Plugin API] Update the DecorationProvider API with vscode changes #8623

Open
vinokurig opened this issue Oct 13, 2020 · 0 comments
Open

[Plugin API] Update the DecorationProvider API with vscode changes #8623

vinokurig opened this issue Oct 13, 2020 · 0 comments
Labels
plug-in system issues related to the plug-in system vscode issues related to VSCode compatibility

Comments

@vinokurig
Copy link
Contributor

The DecorationProvider was moved to public API: microsoft/vscode#54938
Need to apply changes from vscode to theia's plugin API:

export interface DecorationProvider {
onDidChangeDecorations: Event<undefined | Uri | Uri[]>;
provideDecoration(uri: Uri, token: CancellationToken): ProviderResult<DecorationData>;
}

The decoration provider is used in the latest (1.5.0) built-in vscode git plugin.

Feature Description:

@vinokurig vinokurig added plug-in system issues related to the plug-in system vscode issues related to VSCode compatibility labels Oct 13, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
plug-in system issues related to the plug-in system vscode issues related to VSCode compatibility
Projects
None yet
Development

No branches or pull requests

1 participant