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
Because #1876 has brought keymaps to hyper, it would be cool if there was an easy way to figure out the names of commands so that you could create a keybinding for it. One suggestion is to maybe have a logCommands option in your .hyper.js which is false by default. When true, every time you do a command, the name of that command will be logged to the console.
Do you all think this would be a good feature to have in hyper, or do you think it would just be better as a plugin?
The text was updated successfully, but these errors were encountered:
Kind of related so I'll just ask here instead of opening a second issue, but would you all be interested in possibly adding a table to the website with the default commands and keybindings that Hyper provides? Something like:
I just did it quickly so a lot command descriptions would need to be fixed/improved (or removed entirely if you think they're redundant).
The default keys are hardcoded in right now, but it would be pretty simple to just have a placeholder like {{super}}+, and then just do a text replace of {{super}} to cmd or ctrl based on which OS the user is on (which it looks like the site is already checking).
The windows and linux keybindings seem to be completely equivalent except for one, window.minimize which is ctrl+shift+m on linux and ctrl+m, so that would be the one keybinding that would need to be manually changed with JS.
Would you all be interested in this or do you think it's too much clutter? If it is something that you would be interested in adding, I would also suggest that the Configuration section be moved above the Keymap section though, as it should probably have precedence.
Because #1876 has brought keymaps to
hyper
, it would be cool if there was an easy way to figure out the names of commands so that you could create a keybinding for it. One suggestion is to maybe have alogCommands
option in your.hyper.js
which isfalse
by default. Whentrue
, every time you do a command, the name of that command will be logged to the console.Do you all think this would be a good feature to have in
hyper
, or do you think it would just be better as a plugin?The text was updated successfully, but these errors were encountered: