Open adaszko opened 9 months ago
In JIT mode, the current bash completion matching logic simply does completion.starts_with(...) which is wrong when completion-ignore-case is set.
completion-ignore-case
Similarly in AOT mode:
Fix: Retrieve the settings value with something like bind -V | grep completion-ignore-case and behave conditionally based on its value.
bind -V | grep completion-ignore-case
In JIT mode, the current bash completion matching logic simply does completion.starts_with(...) which is wrong when
completion-ignore-case
is set.Similarly in AOT mode:
Fix: Retrieve the settings value with something like
bind -V | grep completion-ignore-case
and behave conditionally based on its value.