cli: namespace apply should autocomplete hcl files
This commit is contained in:
parent
a466f01120
commit
e8a5258ad4
|
@ -61,7 +61,11 @@ func (c *NamespaceApplyCommand) AutocompleteFlags() complete.Flags {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *NamespaceApplyCommand) AutocompleteArgs() complete.Predictor {
|
func (c *NamespaceApplyCommand) AutocompleteArgs() complete.Predictor {
|
||||||
return NamespacePredictor(c.Meta.Client, nil)
|
return complete.PredictOr(
|
||||||
|
NamespacePredictor(c.Meta.Client, nil),
|
||||||
|
complete.PredictFiles("*.hcl"),
|
||||||
|
complete.PredictFiles("*.json"),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *NamespaceApplyCommand) Synopsis() string {
|
func (c *NamespaceApplyCommand) Synopsis() string {
|
||||||
|
|
Loading…
Reference in New Issue