1
0
Fork 0
mirror of https://github.com/spf13/cobra synced 2025-04-04 22:09:11 +00:00

fix: Preserve ArgsLenAtDash during shell completion

This commit is contained in:
Jonathan Conder 2025-03-12 18:36:24 +13:00
parent ceb39aba25
commit 4b1dae3acd
No known key found for this signature in database
GPG key ID: 62C458884CAF799E

View file

@ -360,6 +360,8 @@ func (c *Command) getCompletions(args []string) (*Command, []Completion, ShellCo
// the extra added -- is counted as arg.
flagCompletion := true
_ = finalCmd.ParseFlags(append(finalArgs, "--"))
// Reset ArgsLenAtDash.
finalCmd.Flags().Init(finalCmd.Flags().Name(), pflag.ContinueOnError)
newArgCount := finalCmd.Flags().NArg()
// Parse the flags early so we can check if required flags are set