-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
Add command 'explorer.selectedFiles' #3553 #117820
Conversation
Is it common to have a command to get information? I meam, what will happen if it been called from the command palette? |
It will return the same thing that would come to registerCommand (https://code.visualstudio.com/api/references/vscode-api#commands.registerCommand) as the second argument if the context menu was called in explorer. (list of URIs of selected files in explorer) |
Thanks for your PR, however this is not how we would tackle that feature request. |
I can add it to api, tell me only in which of the object |
We do not want to add it to the API just yet. Once we decide to do that it has to go through our API discussion process. |
But in fact, this is already there, if you select the same action but through |
@isidorn is there ETA? |
No. Backlog means no plans to tackle this at the moment. |
No plans to merge, thus closing. |
This improvement allows you to get the URI of the selected files in explorer
This PR fixes #3553