-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
bugSomething that's not working as intendedSomething that's not working as intended
Milestone
Description
I think this regression was probably introduced with the commit that tried to make it easier to append to completions (e.g. multiple comma-separated arguments)
> function foo; end
> complete -c foo -s s -l long -xa "hello-world goodbye-friend"
> complete -C"foo -s frien"
goodbye-friend # ok
> complete -C"foo -shell"
-shello-world # good
> complete -C"foo -sfrie"
goodbye-friend # bad
> complete -C"foo --long hel"
hello-world # ok
> complete -C"foo --long fr"
goodbye-friend # ok
> complete -C"foo --long=hell"
--long=hello-world # good
> complete -C"foo --long=frien"
goodbye-friend # bad
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething that's not working as intendedSomething that's not working as intended