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
Someone reported issues with pressing : on Windows over at ulyssa/iamb#109. The issue there is that modifiers contains KeyModifiers::SHIFT on Windows, but not on other platforms, because of differences in how crossterm constructs the value. Since SHIFT isn't important for comparing KeyCode::Char keypresseses, I should be able to just remove it when constructing TerminalKey.
The text was updated successfully, but these errors were encountered:
Someone reported issues with pressing
:
on Windows over at ulyssa/iamb#109. The issue there is thatmodifiers
containsKeyModifiers::SHIFT
on Windows, but not on other platforms, because of differences in howcrossterm
constructs the value. SinceSHIFT
isn't important for comparingKeyCode::Char
keypresseses, I should be able to just remove it when constructingTerminalKey
.The text was updated successfully, but these errors were encountered: