-
-
Notifications
You must be signed in to change notification settings - Fork 21.2k
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 keyboard shortcuts to the project manager #47894
Add keyboard shortcuts to the project manager #47894
Conversation
- Ctrl + N: New Project - Ctrl + I: Import Project - Ctrl + S: Scan for Projects - Ctrl + E: Edit Project - Ctrl + R: Run Project - F2: Rename Project - Delete: Remove Project - Already implemented previously, but moved to use `ED_SHORTCUT()`. Note that depsite using `ED_SHORTCUT()`, these shortcuts won't appear in the Editor Settings' Shortcuts dialog and won't be remappable since the project manager code isn't run in the editor.
But Enter already does that. |
I know, but I guess it doesn't hurt to have Ctrl + E as well since the button is Edit. |
Could 'Home' for scroll to top & 'end' to scroll to the bottom of the project list be added? |
This is already implemented: godot/editor/project_manager.cpp Lines 1921 to 1933 in b8bd648
It works only when the project list is focused though. If it doesn't work, please create an issue. |
Thanks! |
Cherry-picked for 3.4. |
Neither |
Ctrl + N: New Project
Ctrl + I: Import Project
Ctrl + S: Scan for Projects
Ctrl + E: Edit Project
Ctrl + R: Run Project
F2: Rename Project
Delete: Remove Project
ED_SHORTCUT()
.Ctrl + F to focus on the search box is already implemented.
Note that depsite using
ED_SHORTCUT()
, these shortcuts won't appear in the Editor Settings' Shortcuts dialog and won't be remappable since the project manager code isn't run in the editor.This closes godotengine/godot-proposals#532.