dont parse args for the ssh kitten as it will do so itself

This commit is contained in:
Kovid Goyal 2023-02-19 20:37:17 +05:30
parent 46367bceed
commit 590c1bd7ad
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
3 changed files with 7 additions and 0 deletions

View file

@ -35,6 +35,8 @@ type Command struct {
StopCompletingAtArg int
// Consider all args as non-options args
OnlyArgsAllowed bool
// Pass through all args, useful for wrapper commands
IgnoreAllArgs bool
// Specialised arg aprsing
ParseArgsForCompletion func(cmd *Command, args []string, completions *Completions)