-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
Test Custom View API improvements #52806
Comments
@sandy081 Writing an extension can only have a complexity of 3 and more... |
@sandy081 please provide an extension that is creating a tree view, since the one you attached is not using the new createTreeView api. |
@isidorn I've updated https://github.com/weinand/vscode-processes to the new API. You can use this as a sample. |
@weinand thanks! |
@isidorn FTP Explorer uses the Tree view implementation. Updated the description to use that sample. |
Refs: #48198 #49311 #50662
Complexity: 2
Write an extension that contributes a tree view to the Explorer. Refer to documentation and ftpExplorer.
onDidChangeSelection
event when the selection changes.visible
property and the correspondingonDidChangeVisibility
event are working as expected when the tree view contents are visible or not. NOTE:visible
isfalse
when the tree view is collapsed.reveal
api and make sure that revealed element is focused -reveal(element: T, options?: { select?: boolean, focus?: boolean }): Thenable<void>;
The text was updated successfully, but these errors were encountered: