diff --git a/revbank b/revbank index 0d664cd..6e8d15e 100755 --- a/revbank +++ b/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;