We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
So, it seems like currently this is basically strange undefined behavior:
$ complete foo -n false -n true -x -a bar $ complete -C'foo ' bar $ complete --erase foo $ complete foo -n true -n false -x -a bar $ complete -C'foo ' <file completions>
I propose this should have been equivalent to: complete foo -n "false; and true" ….
complete foo -n "false; and true" …
So, it seems like currently this is basically strange undefined behavior:
I propose this should have been equivalent to:
complete foo -n "false; and true" ….