From b5ca94af5cd38c90917d6524976dda2d16135660 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 17 Oct 2014 00:52:01 +0200 Subject: terminal: recognize ^h Fixes #1185. CC: @mpv-player/stable --- osdep/terminal-unix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/osdep/terminal-unix.c b/osdep/terminal-unix.c index 5c8e61ba78..bb5ae324ff 100644 --- a/osdep/terminal-unix.c +++ b/osdep/terminal-unix.c @@ -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}, -- cgit v1.2.3