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
Refs: #44090
Complexity: 2
There is new API to show progress as a notification.
Verify:
Sample code:
vscode.window.withProgress({ location: vscode.ProgressLocation.Notification, title: "this is cool", cancellable: true }, (progress, token) => { token.onCancellationRequested(() => { console.log("CANCELED") }); setTimeout(() => { progress.report({ percentage: 10, message: "still going..."}); }, 1000); setTimeout(() => { progress.report({ percentage: 50, message: "still going harder..."}); }, 2000); setTimeout(() => { progress.report({ percentage: 90, message: "almost there..."}); }, 3000); var p = new Promise(resolve => { setTimeout(() => { resolve(); }, 5000); }); return p; });
The text was updated successfully, but these errors were encountered:
@rebornix you might want to test "out of sources" given the amount of fixes I already pushed that were uncovered by Joao.
Sorry, something went wrong.
No branches or pull requests
Refs: #44090
Complexity: 2
There is new API to show progress as a notification.
Verify:
Sample code:
The text was updated successfully, but these errors were encountered: