1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-23 15:22:09 +00:00

terminal: recognize ^h

Fixes #1185.

CC: @mpv-player/stable
This commit is contained in:
wm4 2014-10-17 00:52:01 +02:00
parent a121331186
commit b5ca94af5c

View File

@ -70,6 +70,7 @@ struct key_entry {
};
static const struct key_entry keys[] = {
{"\010", MP_KEY_BS},
{"\011", MP_KEY_TAB},
{"\012", MP_KEY_ENTER},
{"\177", MP_KEY_BS},