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
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)