Re: [PATCH 8/9] completion: support case-insensitive config vars just a bit

2018-05-20 Thread SZEDER Gábor
> config variable names are technically case-insensitive while this case > construct is by default case-sensitive. Moving it to case-insensitive > could be a lot more work. Bash v4 supports the case modification expansion in the form of ${prev,,}. Alas OSX (or older LTS/Enterprise Linux

[PATCH 8/9] completion: support case-insensitive config vars just a bit

2018-05-10 Thread Nguyễn Thái Ngọc Duy
config variable names are technically case-insensitive while this case construct is by default case-sensitive. Moving it to case-insensitive could be a lot more work. Instead let's just accept the form that is more likely to show up in practice. Signed-off-by: Nguyễn Thái Ngọc Duy