diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/inputwin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c index caf5387e..06e055ea 100644 --- a/src/ui/inputwin.c +++ b/src/ui/inputwin.c @@ -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; } |