mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-17 22:14:53 +02:00
explicitly ignore a few errors
This commit is contained in:
@@ -88,7 +88,10 @@ func GenerateCompletions(args []string) error {
|
||||
re(root)
|
||||
}
|
||||
|
||||
root.Validate()
|
||||
err = root.Validate()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
all_completions := make([]*Completions, 0, 1)
|
||||
for _, argv := range all_argv {
|
||||
all_completions = append(all_completions, root.GetCompletions(argv, init_completions[output_type]))
|
||||
|
||||
Reference in New Issue
Block a user