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.
1 parent ef36c6f commit 580b7b0Copy full SHA for 580b7b0
completers/common/but_completer/cmd/branch_apply.go
@@ -2,7 +2,7 @@ package cmd
2
3
import (
4
"github.com/carapace-sh/carapace"
5
- "github.com/carapace-sh/carapace-bin/pkg/actions/tools/but"
+ "github.com/carapace-sh/carapace-bin/pkg/actions/tools/git"
6
"github.com/spf13/cobra"
7
)
8
@@ -19,6 +19,9 @@ func init() {
19
branchCmd.AddCommand(branch_applyCmd)
20
21
carapace.Gen(branch_applyCmd).PositionalCompletion(
22
- but.ActionLocalBranches(),
+ carapace.Batch(
23
+ git.ActionLocalBranches(),
24
+ git.ActionRemoteBranches(""),
25
+ ).ToA(),
26
27
}
0 commit comments