We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Right now, there are 2 options to have sides in modifiers:
['left_command', 'right_option']
{ left: '⌘', right: '⌥' }
Both are too verbose compared to '⌘⌥'.
'⌘⌥'
There is an issue on Goku discussing the idea of < and > for left_ and right_, so it could be
<
>
left_
right_
<⌘>⌥
>⌘⌥>
However, it is too hard to express in TypeScript.
I am thinking about the first character instead
<⌘⌥
left_command, left_option
>⌘⌥
right_command, right_option
['<⌘', '>⌥']
left_command, right_option
Or use the letter l and r instead of < and >
l
r
l⌘⌥
r⌘⌥
['l⌘', 'r⌥']
Or maybe is { l: '⌘', r: '⌥' } good enough if not used often?
{ l: '⌘', r: '⌥' }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now, there are 2 options to have sides in modifiers:
['left_command', 'right_option']
{ left: '⌘', right: '⌥' }
Both are too verbose compared to
'⌘⌥'
.There is an issue on Goku discussing the idea of
<
and>
forleft_
andright_
, so it could be<⌘>⌥
or>⌘⌥>
However, it is too hard to express in TypeScript.
I am thinking about the first character instead
<⌘⌥
forleft_command, left_option
>⌘⌥
forright_command, right_option
['<⌘', '>⌥']
forleft_command, right_option
Or use the letter
l
andr
instead of<
and>
l⌘⌥
forleft_command, left_option
r⌘⌥
forright_command, right_option
['l⌘', 'r⌥']
forleft_command, right_option
Or maybe is
{ l: '⌘', r: '⌥' }
good enough if not used often?The text was updated successfully, but these errors were encountered: