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
When using QuickPickInput, if canPickMany flag is given https://github.com/microsoft/vscode/blob/1876ce6361634423d0d5534b12dad1270c1373ff/src/vs/vscode.d.ts#L1630
QuickPickInput
canPickMany
It should always return an array as result
note: it does not provide multiple selection support, just comply with expected result.
Trying extension using canPickMany and expecting array result is failing. (like result.forEach)
Diagnostics:
The text was updated successfully, but these errors were encountered:
I believe it is not supported yet #5673. Is it a duplicate?
Sorry, something went wrong.
@vince-fugnitto it's not to support the display, just to make compliant the result that should be an array. It's like avoiding crash
Thanks I understand!
Successfully merging a pull request may close this issue.
Description
When using
QuickPickInput
, ifcanPickMany
flag is givenhttps://github.com/microsoft/vscode/blob/1876ce6361634423d0d5534b12dad1270c1373ff/src/vs/vscode.d.ts#L1630
It should always return an array as result
note: it does not provide multiple selection support, just comply with expected result.
Reproduction Steps
Trying extension using
canPickMany
and expecting array result is failing. (like result.forEach)Diagnostics:
The text was updated successfully, but these errors were encountered: