-
Notifications
You must be signed in to change notification settings - Fork 134
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
adding check if char == '-', if so not using as modifier for keypress #105
base: main
Are you sure you want to change the base?
Conversation
Thanks for the PR! Please sign off your commit message. |
Fixes: https://todo.sr.ht/~eliasnaur/gio/432 Signed-off-by: Jeff Aigner <enumeration@gmail.com>
Done. Please let me know if I've done something incorrectly 🤪 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there're some unhanded edge cases, but thanks for tackling this!
io/key/key.go
Outdated
if chord == "-" { | ||
modSet, keySet = "", chord | ||
} else { | ||
modSet, keySet = chord[:sep], chord[sep+1:] | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps I am misreading, but this seems like it would only work to bind to literal presses of -
. It doesn't handle modifier keys in combination with -
such as Short--
or Ctrl--
. Here's a playground demonstrating some of the failure cases. I think whatever we do needs to handle all of the ones I put in the playground, probably by detecting when the final character is -
and doing special processing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ahh good point. I will be implementing these in my app soon so I'll update the PR when I do so.
LGTM, but an addition to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work! A test would, as @eliasnaur says, be appreciated. :D
0d543a0
to
1686874
Compare
67c77c9
to
46cc311
Compare
f8029f2
to
026d3f9
Compare
072d68c
to
e8ba786
Compare
3d36537
to
74ccc9c
Compare
No description provided.