From caa5d8170efdc2f229d4e2ae0251a6d29880966e Mon Sep 17 00:00:00 2001 From: Murray Campbell Date: Tue, 14 Apr 2020 16:03:23 -0700 Subject: terminal-unix: add key_entry defs for DECCKM mode zsh often sets DECCKM (i.e. Cursor Key Mode) meaning the arrow keys send `SS3 A/B/C/D` instead of `CSI A/B/C/D`. Add `key_entry` definitions for this alongside the existing DECCKM Reset definitions. --- osdep/terminal-unix.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/osdep/terminal-unix.c b/osdep/terminal-unix.c index 954c13904f..a2959ba237 100644 --- a/osdep/terminal-unix.c +++ b/osdep/terminal-unix.c @@ -84,6 +84,10 @@ static const struct key_entry keys[] = { {"\033[23~", MP_KEY_F+11}, {"\033[24~", MP_KEY_F+12}, + {"\033OA", MP_KEY_UP}, + {"\033OB", MP_KEY_DOWN}, + {"\033OC", MP_KEY_RIGHT}, + {"\033OD", MP_KEY_LEFT}, {"\033[A", MP_KEY_UP}, {"\033[B", MP_KEY_DOWN}, {"\033[C", MP_KEY_RIGHT}, -- cgit v1.2.3