-
Notifications
You must be signed in to change notification settings - Fork 27
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
Shift arrow movement doesn't select text on linux #29
Comments
This is because with the current 3l layout, it does not remove the modifier bits from the modifier key. 3l would need a definition like this:
In this case, AltGr is the modifier key that enables ISO Level 3 Shift. You can check that with wrong:
Check the state here. It sends 0x80 for AltGr + 0x1 for Shift. The combination confuses some programs, eg. Google Chrome and Google Docs. right:
Because of |
Ah that makes sense! I remember trying a few things in the definition file without success, but I didn't have the skills to make it work. Thank you! Is this worth opening a pull request? |
I have also noticed that Ctrl+Tab and Ctrl+Shift+Tab do not switch tabs on ChromeOS. I wonder if they are related? |
I don't think Ctrl+Tab is the same issue but you can compare xev output if it is the same in case us layout is working for you. There might be differences that can be fixed. Certainly a PR would be a good idea. Though, I am personally not using 3l and just found it out of curiosity. |
For example, Shift + Cur + "h" does not select text on linux (but it does seem to work on Chrome OS).
The text was updated successfully, but these errors were encountered: