mirror of https://github.com/mpv-player/mpv
input: add key name for U+3000 IDEOGRAPHIC SPACE
Deserves its own name, because just like SPACE it's a printable character, but invisible. Fixes #2349... I think.
This commit is contained in:
parent
1a1ac76d2a
commit
14bb3d06a2
|
@ -36,6 +36,7 @@ struct key_name {
|
|||
static const struct key_name key_names[] = {
|
||||
{ ' ', "SPACE" },
|
||||
{ '#', "SHARP" },
|
||||
{ 0x3000, "HALF_SPACE" },
|
||||
{ MP_KEY_ENTER, "ENTER" },
|
||||
{ MP_KEY_TAB, "TAB" },
|
||||
{ MP_KEY_BACKSPACE, "BS" },
|
||||
|
|
Loading…
Reference in New Issue