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:
parent
d0f3debbe5
commit
06d4591e8a
1 changed files with 4 additions and 0 deletions
4
revbank
4
revbank
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue