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
Expected behavior
The same value for both platfroms. Either the linux implementation should return 'SHIFT' as modifier or the windows implementation should return NONE as modifier.
OS
Windows 10 / Ubuntu 18.04.2 LTS
Terminal/Console
CMD / Windows Terminal on Windows
Bash on Ubuntu
The text was updated successfully, but these errors were encountered:
Not sure if related but it seems SHIFT is "broken" in this way along possibly other modifiers? I just found out that trying to respond to a :-press event doesn't work in Windows but works in Linux. The event itself is built without a modifier so I suspect in windows it's being matched to a : + SHIFT modifier but on Linux it's just : + NONE
Describe the bug
when in raw mode the KeyEvent that is read for
SHIFT + TAB
sequence is not the same for linux and windows platforms.Linux :
KeyEvent { code: BackTab, modifiers: NONE }
Windows:
KeyEvent { code: BackTab, modifiers: SHIFT }
To Reproduce
Steps to reproduce the behavior:
I have used this code snippet to confirm the issue.
Expected behavior
The same value for both platfroms. Either the linux implementation should return 'SHIFT' as modifier or the windows implementation should return
NONE
as modifier.OS
Windows 10 / Ubuntu 18.04.2 LTS
Terminal/Console
CMD / Windows Terminal on Windows
Bash on Ubuntu
The text was updated successfully, but these errors were encountered: