about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/ui/inputwin.c3
1 files changed, 3 insertions, 0 deletions
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;
 }