From 09833fb0dd1b778ea1e0078af7fb3a8e734e21a2 Mon Sep 17 00:00:00 2001 From: James Booth Date: Tue, 29 Sep 2015 21:08:20 +0100 Subject: [PATCH] Unmap key sequence Alt+= Fixes #629 --- src/ui/inputwin.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c index 5ab2c281..af738cc6 100644 --- a/src/ui/inputwin.c +++ b/src/ui/inputwin.c @@ -395,6 +395,9 @@ _inp_rl_startup_hook(void) rl_bind_key('\t', _inp_rl_tab_handler); rl_bind_key(CTRL('L'), _inp_rl_clear_handler); + // unbind unwanted mappings + rl_bind_keyseq("\\e=", NULL); + return 0; }