You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
KeyEvent{code:KeyCode::Backspace,modifiers: event::KeyModifiers::CONTROL,
..
} => {// do something with the control backspace},
i've seen that this combination doesnt work. should this work? is it supposed to be working? its a bug?
but this combination is working:
KeyEvent{code:KeyCode::Backspace,modifiers: event::KeyModifiers::ALT,
..
} => {// do something with the control backspace},
what is happening? what am i missing?
from all command-line apps that i've interacted with (the rust ones, im talking about) none of them was able to make ctrl+backspace to work, only alt+backspace was working by default.
is this issue the reason for these apps?
im using crossterm = "0.25.0"
thanks in advance.
The text was updated successfully, but these errors were encountered:
Thanks for filing issue, this missing combination is already reported here: #685. Either not implemented or can not be handled. Closing this issue in favour of that tracking issue.
hello.
love your crate.
i've seen that this combination doesnt work. should this work? is it supposed to be working? its a bug?
but this combination is working:
what is happening? what am i missing?
from all command-line apps that i've interacted with (the rust ones, im talking about) none of them was able to make ctrl+backspace to work, only alt+backspace was working by default.
is this issue the reason for these apps?
im using
crossterm = "0.25.0"
thanks in advance.
The text was updated successfully, but these errors were encountered: