Source File
group.go
Belonging Package
github.com/rsteube/carapace/internal/common
package commonimport ()type Group struct {Cmd *cobra.Command}func ( Group) () string {:= strings.ToLower(.Cmd.GroupID)switch {case strings.HasSuffix(, " commands"):returncase != "":return + " commands"case len(.Cmd.Parent().Groups()) != 0:return "other commands"default:return "commands"}}func ( Group) () string {if .Cmd.Parent() == nil || .Cmd.Parent().Groups() == nil {return style.Default}for , := range .Cmd.Parent().Groups() {if .ID == .Cmd.GroupID {return style.Carapace.Highlight()}}return style.Default}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |