You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This one isn't a simple bug fix, but rather a prompt for a discussion on how to fix / centralise keyboard shortcuts. Right now they are spread out throughout the code (some are checked as part of action handling, some are in event handlers, etc.) despite a lot of them being "global". The overall goals should be:
We can support user configuration of the shortcuts
We have a centralised place for adding and editing global shortcuts
Shortcuts that can't live in that centralised place are obvious to find (not just from the perspective of "where would this shortcut live", but also "what other shortcuts might exist somewhere?")
We can support different OSes (this should be a case of determining which of meta/cmd vs ctrl to use based on a library that determines which OS the user is using)
The text was updated successfully, but these errors were encountered:
This one isn't a simple bug fix, but rather a prompt for a discussion on how to fix / centralise keyboard shortcuts. Right now they are spread out throughout the code (some are checked as part of action handling, some are in event handlers, etc.) despite a lot of them being "global". The overall goals should be:
meta
/cmd
vsctrl
to use based on a library that determines which OS the user is using)The text was updated successfully, but these errors were encountered: