We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4409ab7 + 5ce7696 commit d68a34eCopy full SHA for d68a34e
pkg/actions/tools/carapace/completer.go
@@ -26,7 +26,9 @@ func ActionCompleters(unknownBridges bool) carapace.Action {
26
name, _, _ := strings.Cut(nameVariant, "/")
27
28
return carapace.Batch(
29
- bridge.ActionBridges(name).Filter("carapace-bin").Unless(!unknownBridges),
+ bridge.ActionBridges(name).
30
+ Filter("carapace-bin", "macro").
31
+ Unless(!unknownBridges),
32
ActionVariants(name).Style(style.Carapace.KeywordPositive),
33
).ToA().Unique().Prefix(name + "/").NoSpace()
34
0 commit comments