-
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
fix: [Plugin-API] complete QuickPick hide api #5766
fix: [Plugin-API] complete QuickPick hide api #5766
Conversation
ac72183
to
bc3e5a8
Compare
@akosyakov I don't know how to test plugin in theia but I'm sure it's effective in monaco 0.14. |
@hacke2, here is a Wiki page describing how to test it: https://github.com/theia-ide/theia/wiki/Testing-VS-Code-Extensions |
@akosyakov @kittaakos I've tested it. No problem. What should I do next? |
@hacke2 wait, someone has to verify it independently |
@hacke2, please squash your commits, and I do the review. Thanks! |
Signed-off-by: hacke2 <[email protected]>
7bc6b57
to
ef47a35
Compare
@kittaakos Done. |
Never mind. I added your example: kittaakos/vscode-extension-samples@7f1230c |
I have verified it. Without the changes, the Command Palette does not close automatically after the 2000 ms timeout, it works with the changes. 👍 I am OK with the Theia related modifications, @benoitf are you OK with the plugin API? |
If its possible can we try to get this merged asap, I'm currently working on fixes for #5187. In order to fix up the comments I have to go back and re-do the way the createQuickPick API works and it would be easier to build ontop of this if its expected to go through |
@JPinkney, sure. Please find someone who approves the plugin API, and we can merge. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please take care of a comment before merging
Signed-off-by: hacke2 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hacke2 thank you for the contribution
code-wise looks good, merging since changes were already tested
Fixes #5765
What it does
See https://code.visualstudio.com/api/references/vscode-api#QuickPick.
when execute
hide
method, vscode will:But theia only emit onDidHide event.
How to test
Review checklist
Reminder for reviewers