Skip to content
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

Allow extensions to provide additional info for the bug report form #106471

Closed
iliazeus opened this issue Sep 11, 2020 · 1 comment
Closed

Allow extensions to provide additional info for the bug report form #106471

iliazeus opened this issue Sep 11, 2020 · 1 comment
Assignees
Labels
*duplicate Issue identified as a duplicate of another issue(s)

Comments

@iliazeus
Copy link
Contributor

Right now, when reporting an extension bug through, e.g., Help - Report Issue, the only info we get is from VS Code itself (platform, VS Code version, extension version, etc.) or from the user.

But for many extensions, it would be useful to also send additional details. For example, language extensions might include the version of the language server to help diagnose the issue.

So it would be nice to have an API similar to:

interface IssueDataProvider {
  provideData(): ProviderResult<Record<string, any>>;
}

namespace extensions {
  registerIssueDataProvider(provider: IssueDataProvider);
}

Or, really, any other way to add data to an issue.

@RMacfarlane
Copy link
Contributor

This is a great feature request! There is already an issue for this: #46726 Please continue the discussion there, thank you.

@RMacfarlane RMacfarlane added the *duplicate Issue identified as a duplicate of another issue(s) label Sep 12, 2020
@github-actions github-actions bot locked and limited conversation to collaborators Oct 27, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
*duplicate Issue identified as a duplicate of another issue(s)
Projects
None yet
Development

No branches or pull requests

2 participants