1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Unmap key sequence Alt+=

Fixes #629
This commit is contained in:
James Booth 2015-09-29 21:08:20 +01:00
parent bfdda17b7f
commit 09833fb0dd

View File

@ -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;
}