gdamore / tcell

Tcell is an alternate terminal package, similar in some ways to termbox, but better in others.
Apache License 2.0
4.52k stars 306 forks source link

The Name function returns Tab for Ctrl+Tab #742

Open m-kru opened 1 month ago

m-kru commented 1 month ago

The Name() function returns Tab for Ctrl+Tab instead of Ctrl+Tab. This is the case for all non character keys. For example, for Ctrl+Enter the Name() function returns Enter instead of Ctrl+Enter.

https://github.com/gdamore/tcell/blob/88b9c25c3c5ee48b611dfeca9a2e9cf07812c35e/key.go#L206

m-kru commented 1 month ago

Ok, the Ctrl modifier is not set. I wonder who eats the Ctrl key, is it the keyboard or terminal emulator.

m-kru commented 1 month ago

Interestingly, Alt+Tab returns Alt+Tab.