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
I love everything about Min. Great functionality; very sleek.
I can easily find how to set custom shortcuts on the settings page but as far as I can tell, the only recognized modifiers are "ctrl" and "alt" (which map to "mod" and "option", respectively in the settings.json file)
I attempted to write in "super" as a short cut (e.g. super+t for new tab) but it didn't seem to register.
I also tried "meta" since that's how the super key is recognized in Vivaldi and "m" which is used for super in Chromium.
Is using the Super key currently possible in Min?
Would it be feasible to implement?
Could one develop a userscript to make it work or are modifiers too "low level"?
The text was updated successfully, but these errors were encountered:
I looked at this a little bit, and I'm not sure what would be needed to support this. Internally, Min has two separate keyboard event handlers, depending on which part of the UI you're in:
The first is Mousetrap - I think the Linux super key would be equivalent to the Windows key, but that apparently isn't supported, and it wasn't added because "Unfortunately this means it is not going to be a simple thing to add to the core library since the windows key is not treated as meta, shift, ctrl, or alt" (ccampbell/mousetrap#81)
That page doesn't mention the super key specifically, but the linked keyboardEvent.metaKey docs say:
Returns a boolean value that is true if the Meta key (on Mac keyboards, the ⌘ Command key; on Windows keyboards, the Windows key (⊞)) was active when the key event was generated.
Which seems to contradict what the Mousetrap issue says.
Then, while the keyboard focus is in the browser UI (like the searchbar, not a webpage), try pressing super+any key, copy the resulting input object from the devtools, and paste it here.
I love everything about Min. Great functionality; very sleek.
I can easily find how to set custom shortcuts on the settings page but as far as I can tell, the only recognized modifiers are "ctrl" and "alt" (which map to "mod" and "option", respectively in the
settings.json
file)I attempted to write in "super" as a short cut (e.g.
super+t
for new tab) but it didn't seem to register.I also tried "meta" since that's how the super key is recognized in Vivaldi and "m" which is used for super in Chromium.
Is using the Super key currently possible in Min?
Would it be feasible to implement?
Could one develop a userscript to make it work or are modifiers too "low level"?
The text was updated successfully, but these errors were encountered: