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
My setting in ~/.inputrc
~/.inputrc
set show-all-if-ambiguous on #cycle through choices with ctrl-right/left "\e[1;5C": menu-complete "\e[1;5D": menu-complete-backward
When triggering menu-complete (see man bash) first word takes place (in not wanted format) immediately at the same time with showing suggestions
menu-complete
man bash
The problem with this implementation is that we get:
dothis <number> command_name <padding> <cursor>
What could we do to improve this behaviour? Thank you in advance!
The text was updated successfully, but these errors were encountered:
an idea is preventing this word formatting if triggered menu-complete (e.g.: %)
%
else if (( COMP_TYPE != 37)); then for i in "${!suggestions[@]}"; do suggestions[$i]="$(printf '%*s' "-$COLUMNS" "${suggestions[$i]}")" done ...
Sorry, something went wrong.
No branches or pull requests
My setting in
~/.inputrc
When triggering
menu-complete
(seeman bash
) first word takes place (in not wanted format) immediately at the same time with showing suggestionsThe problem with this implementation is that we get:
What could we do to improve this behaviour? Thank you in advance!
The text was updated successfully, but these errors were encountered: