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:
parent
ceb39aba25
commit
4b1dae3acd
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue