-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[vscode] Support TreeDataProvider#resolveTreeItem()
#11147
Labels
vscode
issues related to VSCode compatibility
Comments
48 tasks
I am looking into this. |
lucas-koehler
added a commit
to eclipsesource/theia
that referenced
this issue
Sep 28, 2022
* Extend `theia.d.ts` with optional method `resolveTreeItem` in `TreeDataProvider` * Add infrastructure on ext side to resolve tree items * Add resolvable tree view node classes * Add resolvement for tooltips and commands * Align TreeViewItem and TreeViewNode tooltip property with to include MarkdownString Implements eclipse-theia#11147 Contributed on behalf of STMicroelectronics Signed-off-by: Lucas Koehler <[email protected]>
lucas-koehler
added a commit
to eclipsesource/theia
that referenced
this issue
Sep 28, 2022
* Extend `theia.d.ts` with optional method `resolveTreeItem` in `TreeDataProvider` * Add infrastructure on ext side to resolve tree items * Add resolvable tree view node classes * Add resolvement for tooltips and commands * Align TreeViewItem and TreeViewNode tooltip property with to include MarkdownString Implements eclipse-theia#11147 Contributed on behalf of STMicroelectronics Signed-off-by: Lucas Koehler <[email protected]>
lucas-koehler
added a commit
to eclipsesource/theia
that referenced
this issue
Sep 28, 2022
* Extend `theia.d.ts` with optional method `resolveTreeItem` in `TreeDataProvider` * Add infrastructure on ext side to resolve tree items * Add resolvable tree view node classes * Add resolvement for tooltips and commands * Align TreeViewItem and TreeViewNode tooltip property type to include `MarkdownString` Implements eclipse-theia#11147 Contributed on behalf of STMicroelectronics Signed-off-by: Lucas Koehler <[email protected]>
1 task
lucas-koehler
added a commit
to eclipsesource/theia
that referenced
this issue
Sep 28, 2022
* Extend `theia.d.ts` with optional method `resolveTreeItem` in `TreeDataProvider` * Add infrastructure on ext side to resolve tree items * Add resolvable tree view node classes * Add resolvement for tooltips and commands * Align TreeViewItem and TreeViewNode tooltip property type to include `MarkdownString` Implements eclipse-theia#11147 Contributed on behalf of STMicroelectronics Signed-off-by: Lucas Koehler <[email protected]>
lucas-koehler
added a commit
to eclipsesource/theia
that referenced
this issue
Oct 14, 2022
* Extend `theia.d.ts` with optional method `resolveTreeItem` in `TreeDataProvider` * Add infrastructure on ext side to resolve tree items * Add resolvable tree view node classes * Add resolvement for tooltips and commands * Align TreeViewItem and TreeViewNode tooltip property type to include `MarkdownString` Implements eclipse-theia#11147 Contributed on behalf of STMicroelectronics Signed-off-by: Lucas Koehler <[email protected]>
lucas-koehler
added a commit
to eclipsesource/theia
that referenced
this issue
Oct 14, 2022
* Extend `theia.d.ts` with optional method `resolveTreeItem` in `TreeDataProvider` * Add infrastructure on ext side to resolve tree items * Add resolvable tree view node classes * Add resolvement for tooltips and commands * Align TreeViewItem and TreeViewNode tooltip property type to include `MarkdownString` Implements eclipse-theia#11147 Contributed on behalf of STMicroelectronics Signed-off-by: Lucas Koehler <[email protected]>
JonasHelming
pushed a commit
that referenced
this issue
Oct 14, 2022
* Extend `theia.d.ts` with optional method `resolveTreeItem` in `TreeDataProvider` * Add infrastructure on ext side to resolve tree items * Add resolvable tree view node classes * Add resolvement for tooltips and commands * Align TreeViewItem and TreeViewNode tooltip property type to include `MarkdownString` Implements #11147 Contributed on behalf of STMicroelectronics Signed-off-by: Lucas Koehler <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add support in TreeDataProvider for resolving tree items on hover or click by adding the missing method
resolveTreeItem(item: TreeItem, element: T, token: CancellationToken): ProviderResult<TreeItem>
See https://code.visualstudio.com/api/references/vscode-api#TreeDataProvider%3CT%3E
The text was updated successfully, but these errors were encountered: