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: #92135
Now that we can support view-level progress indicators, we should expose this ability to extensions.
Current proposal:
vscode/src/vs/vscode.proposed.d.ts
Lines 1828 to 1845 in eb4ebee
Alternative # 1:
export interface ProgressOptions { location: ProgressLocation | string; }
Alternative # 2:
export interface ProgressOptions { location: ProgressLocation | { viewId: string }; }
//cc @jrieken
The text was updated successfully, but these errors were encountered:
eb4ebee
I think I prefer alt #2, but I chose the first, because neither alt 1 or 2 can be implemented in vscode.proposed.d.ts
vscode.proposed.d.ts
Sorry, something went wrong.
Updates view progress proposal - #92421
7fcc44c
fb87c6c
Alternative # 2 above implemented:
vscode/src/vs/vscode.d.ts
Lines 7938 to 7958 in d778f85
eamodio
No branches or pull requests
Refs: #92135
Now that we can support view-level progress indicators, we should expose this ability to extensions.
Current proposal:
vscode/src/vs/vscode.proposed.d.ts
Lines 1828 to 1845 in eb4ebee
Alternative # 1:
Alternative # 2:
//cc @jrieken
The text was updated successfully, but these errors were encountered: