|
|
|
|
|
by eviks
757 days ago
|
|
No it doesn't, and the author rejected the proposal to add them https://sw.kovidgoyal.net/kitty/keyboard-protocol/ Modifiers are encoded as a bit field with: shift 0b1 (1)
alt 0b10 (2)
ctrl 0b100 (4)
super 0b1000 (8)
hyper 0b10000 (16)
meta 0b100000 (32)
caps_lock 0b1000000 (64)
num_lock 0b10000000 (128) |
|
kitten show-key -m kitty
in a kitty terminal and pressing the left and right modifier keys.