mirror of
https://github.com/wez/wezterm.git
synced 2024-12-25 22:33:52 +03:00
ctrl-space should send NUL
This commit is contained in:
parent
3fd4e74a81
commit
54cc62ccf9
@ -549,7 +549,7 @@ impl TerminalState {
|
||||
}
|
||||
|
||||
Char(c)
|
||||
if (c.is_ascii_alphanumeric() || c.is_ascii_punctuation())
|
||||
if (c.is_ascii_alphanumeric() || c.is_ascii_punctuation() || c == ' ')
|
||||
&& mods.contains(KeyModifiers::CTRL) =>
|
||||
{
|
||||
let c = ((c as u8) & 0x1f) as char;
|
||||
|
Loading…
Reference in New Issue
Block a user