gitextract_201ev488/ ├── .github/ │ ├── dependabot.yml │ ├── labeler.yml │ └── workflows/ │ ├── labeler.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── .mailmap ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── MAINTAINERS ├── Makefile ├── README.md ├── SECURITY.md ├── active_help.go ├── active_help_test.go ├── args.go ├── args_test.go ├── bash_completions.go ├── bash_completionsV2.go ├── bash_completionsV2_test.go ├── bash_completions_test.go ├── cobra.go ├── cobra_test.go ├── command.go ├── command_notwin.go ├── command_test.go ├── command_win.go ├── completions.go ├── completions_test.go ├── doc/ │ ├── cmd_test.go │ ├── man_docs.go │ ├── man_docs_test.go │ ├── man_examples_test.go │ ├── md_docs.go │ ├── md_docs_test.go │ ├── rest_docs.go │ ├── rest_docs_test.go │ ├── util.go │ ├── yaml_docs.go │ └── yaml_docs_test.go ├── fish_completions.go ├── fish_completions_test.go ├── flag_groups.go ├── flag_groups_test.go ├── go.mod ├── go.sum ├── powershell_completions.go ├── powershell_completions_test.go ├── shell_completions.go ├── site/ │ └── content/ │ ├── active_help.md │ ├── completions/ │ │ ├── _index.md │ │ ├── bash.md │ │ ├── fish.md │ │ ├── powershell.md │ │ └── zsh.md │ ├── docgen/ │ │ ├── _index.md │ │ ├── man.md │ │ ├── md.md │ │ ├── rest.md │ │ └── yaml.md │ ├── projects_using_cobra.md │ └── user_guide.md ├── zsh_completions.go └── zsh_completions_test.go