1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Disable readline completion

This commit is contained in:
James Booth 2015-11-29 22:23:31 +00:00
parent 921ce6ec7d
commit 6e304bb867

View File

@ -390,6 +390,9 @@ _inp_rl_startup_hook(void)
// unbind unwanted mappings
rl_bind_keyseq("\\e=", NULL);
// disable readline completion
rl_variable_bind("disable-completion", "on");
return 0;
}