Fix tab completion bug

When there were several matches that shared the same common prefix, but
with a different case, readline would eat the input from the case
sensitive longest common prefix up to where the case began to differ.

e.g. when "ibutton" and "iButton-touwtje" were available, typing
"ibu<tab>" would truncate the input to just "i" and on second tab show
both matches, but without ever completing beyond the "i".
This commit is contained in:
Juerd Waalboer 2023-02-22 01:36:06 +01:00
parent d0f3debbe5
commit 06d4591e8a

View file

@ -67,6 +67,10 @@ sub prompt($prompt, $plugins, $completions) {
return shift @matches;
};
# Term::ReadLine::Gnu (1.37) does not expose rl_completion_case_fold,
# but it can be assigned through the corresponding .inputrc command.
$readline->parse_and_bind("set completion-ignore-case on");
my $done;
my $input;