We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
complgen/src/aot/bash.rs
Line 127 in 5e29dcb
Line 354 in 5e29dcb
Line 387 in 5e29dcb
Line 408 in 5e29dcb
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
The text was updated successfully, but these errors were encountered:
Add e2e tests #41
0edd165
No branches or pull requests
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:
complgen/src/aot/bash.rs
Line 127 in 5e29dcb
complgen/src/aot/bash.rs
Line 354 in 5e29dcb
complgen/src/aot/bash.rs
Line 387 in 5e29dcb
complgen/src/aot/bash.rs
Line 408 in 5e29dcb
Fix: Retrieve the settings value with something like
bind -V | grep completion-ignore-case
and behave conditionally based on its value.The text was updated successfully, but these errors were encountered: