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
This was reported for Neovide here
Input Option+Shift+Space, which should produce a non-breaking space. In Neovide, we receive the following event
Option+Shift+Space
KeyEvent { physical_key: Code( Space, ), logical_key: Named( Space, ), text: Some( " ", ), location: Standard, state: Pressed, repeat: false, platform_specific: KeyEventExtra { text_with_all_modifiers: Some( "\u{a0}", ), key_without_modifiers: Named( Space, ), }, }
The non-breaking space is correctly reported in text_with_all_modifiers, but I would expect it to be reported in text like any other input.
text_with_all_modifiers
text
The same thing also happens with narrow non breaking space for example.
KeyEvent { physical_key: Code( Space, ), logical_key: Named( Space, ), text: None, location: Standard, state: Released, repeat: false, platform_specific: KeyEventExtra { text_with_all_modifiers: Some( "\u{202f}", ), key_without_modifiers: Named( Space, ), }, }
macOS 15.1.1
0.29.15
The text was updated successfully, but these errors were encountered:
NamedKey
KeyCode
No branches or pull requests
Description
This was reported for Neovide here
Input
Option+Shift+Space
, which should produce a non-breaking space. In Neovide, we receive the following eventThe non-breaking space is correctly reported in
text_with_all_modifiers
, but I would expect it to be reported intext
like any other input.The same thing also happens with narrow non breaking space for example.
macOS version
Winit version
0.29.15
The text was updated successfully, but these errors were encountered: