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
Running WSL in Powershell, the Home and End keys are not being handled in the keyboard.getKeyPress() function.
Both Home and End are 4 byte runes in this scenario. Adding the following lines to the hexCodes definition resolves this issue:
"1b5b46": {Code: keys.End, AltPressed: false}, "1b5b48": {Code: keys.Home, AltPressed: false},
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Running WSL in Powershell, the Home and End keys are not being handled in the keyboard.getKeyPress() function.
Both Home and End are 4 byte runes in this scenario. Adding the following lines to the hexCodes definition resolves this issue:
"1b5b46": {Code: keys.End, AltPressed: false},
"1b5b48": {Code: keys.Home, AltPressed: false},
The text was updated successfully, but these errors were encountered: