-
-
Notifications
You must be signed in to change notification settings - Fork 237
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
Make Ctrl + Return
to open the selected project in new window
#76
Comments
Hi @djhojd , When I created the new command, I did take a look on how to accomplish the You have this in some core commands, like in I really like the idea and maybe the API has been made public. I will take a look 👍 |
Depends on microsoft/vscode#18064 |
Ctrl + Return
to open the selected project in new window
Hi @djhojd @rockingskier , Last week I decided to "re-focus" on some of my extensions, and I'll start to plan milestones for each of them. But this "re-focus" will be based on community feedback/support. I'm closing this issue because the VS Code issue that it depends on, has no update from VS Code team members for more than an year. It is not planned on any Milestone, so it appears it will not be released soon. I'm subscribed to that issue, so if/when it is closed, I'll be notified. Thank you |
For anyone coming to this issue, please remember to "thumbs up" the open VSCode issue linked above so that it is more likely to get on their radar. @alefragnani Reopening this issue might help to direct more attention to the open VSCode issue. Just a thought, anyway. But definitely understand wanting to keep this extension's open issues cleaned up. |
Looks like you might be able to go part way towards this with the new But as I said in microsoft/vscode#18064 it's not clear whether you as an extension author can use this functionality or not. |
Hi @alexrussell , I’ll take a look at the latest API in the weekend, but my initial feeling is that’s only available for the open Symbol picker, as you commented. Stay tuned |
Yup, looking very briefly into the QuickPick API I couldn't see how VS Code can tell the extension whether the alternative accept was used. The release notes also didn't seem to mention anything in extension development as far as I could see. But it'd be interesting to see how the files/symbols picker does it, being as it presumably uses the same public APIs as extensions...? |
No, it does not uses the same public API, unfortunately. BTW, there are other limitations in the public API. For instance, it does not allow groups/sections like you see when you open the |
Hi guys,
I'm aware of the new feature (and thank you!) that will open the select project into a new window by using Project Manager: List Projects to Open in New Window or the setting
projectManager.openInNewWindow
.What I think would be nice (don't know if VS Code API even let's you) is to have only one Project Manager: List Projects to Open and after you select the project you want to be able to use
Enter
to open in current window and (let's say)Shift+Enter
to open in a new window. Of course this would mean that you will need aprojectManager.openInNewWindow
which if set tofalse
will do the above but if set totrue
will switch the above behavior.What do you think?
The text was updated successfully, but these errors were encountered: