// 💾 SUPPLIER BACKUP
Go to file
Paul Holzinger de187e874d
Fix flag completion (#1438)
* Fix flag completion

The flag completion functions should not be stored in the root cmd.
There is no requirement that the root cmd should be the same when
`RegisterFlagCompletionFunc` was called. Storing the flags there does
not work when you add the the flags to your cmd struct before you add the
cmd to the parent/root cmd. The flags can no longer be found in the rigth
place when the completion command is called and thus the flag completion
does not work.

Also #1423 claims that this would be thread safe but we still have a map
which will fail when accessed concurrently. To truly fix this issue use a
RWMutex.

Fixes #1437
Fixes #1320

Signed-off-by: Paul Holzinger <pholzing@redhat.com>

* Fix trailing whitespaces in fish comp scripts

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2021-07-02 09:25:47 -06:00
.github ci/MSYS2: go install @latest (#1366) 2021-05-03 10:08:39 -06:00
cobra drop mitchellh/go-homedir (#853) 2021-06-30 14:08:43 -04:00
doc Use golangci-lint (#1044) 2021-02-07 17:08:50 -07:00
.gitignore leverage makefile to run build tasks (#976) 2020-02-20 12:25:38 -07:00
.golangci.yml Use golangci-lint (#1044) 2021-02-07 17:08:50 -07:00
.mailmap Add .mailcap for a more tidy "git shortlog" output 2015-11-20 15:24:23 -07:00
args.go Fish completion using Go completion (#1048) 2020-04-10 13:56:28 -06:00
args_test.go Added ExactValidArgs (#765) 2018-10-21 10:01:21 -04:00
bash_completions.go Fix flag completion (#1438) 2021-07-02 09:25:47 -06:00
bash_completions.md Bash completion V2 with completion descriptions (#1146) 2021-06-30 15:24:58 -06:00
bash_completions_test.go Use golangci-lint (#1044) 2021-02-07 17:08:50 -07:00
bash_completionsV2.go Bash completion V2 with completion descriptions (#1146) 2021-06-30 15:24:58 -06:00
CHANGELOG.md Fix typo 2021-02-10 12:40:59 -07:00
cobra.go Use golangci-lint (#1044) 2021-02-07 17:08:50 -07:00
cobra_test.go Use golangci-lint (#1044) 2021-02-07 17:08:50 -07:00
command.go Fix flag completion (#1438) 2021-07-02 09:25:47 -06:00
command_notwin.go Fixing golint warnings 2016-03-31 09:53:34 -04:00
command_test.go Pass context to completion (#1265) 2021-05-03 10:33:57 -06:00
command_win.go added variable to allow configuration of mousetrap message duration (#809) 2019-03-20 20:05:52 -04:00
completions.go Fix flag completion (#1438) 2021-07-02 09:25:47 -06:00
completions_test.go Fix flag completion (#1438) 2021-07-02 09:25:47 -06:00
CONDUCT.md Cobra User Contract (#1292) 2021-01-26 10:55:24 -07:00
CONTRIBUTING.md Add CONTRIBUTING.md (#1183) 2020-08-10 22:14:21 -06:00
fish_completions.go Fix flag completion (#1438) 2021-07-02 09:25:47 -06:00
fish_completions.md Extend Go completions and revamp zsh comp (#1070) (#1070) 2020-06-29 13:52:14 -06:00
fish_completions_test.go Use golangci-lint (#1044) 2021-02-07 17:08:50 -07:00
go.mod Bump to viper 1.8.1 (#1433) 2021-06-30 15:45:46 -06:00
go.sum Bump to viper 1.8.1 (#1433) 2021-06-30 15:45:46 -06:00
LICENSE.txt adding license 2013-09-03 18:46:13 -04:00
Makefile Use golangci-lint (#1044) 2021-02-07 17:08:50 -07:00
powershell_completions.go Correcting misspelled words (#1349) 2021-05-10 17:19:33 -06:00
powershell_completions.md powershell completion with custom comp (#1208) 2020-12-29 07:57:32 -07:00
projects_using_cobra.md Add the new Twitch CLI to to projects_using_cobra.md (#1301) 2020-12-29 07:39:22 -07:00
README.md ci: deprecate Travis CI 2021-06-30 16:38:08 -04:00
shell_completions.go Extend Go completions and revamp zsh comp (#1070) (#1070) 2020-06-29 13:52:14 -06:00
shell_completions.md Fix documentation (#1434) 2021-07-01 09:49:30 -06:00
user_guide.md drop mitchellh/go-homedir (#853) 2021-06-30 14:08:43 -04:00
zsh_completions.go Fix zsh for DirectiveNoSpace and DirectiveNoFileComp (#1213) 2021-05-03 10:54:00 -06:00
zsh_completions.md Improve zsh completion documentation (#1169) 2020-07-19 16:02:46 -06:00

cobra logo

Cobra is both a library for creating powerful modern CLI applications as well as a program to generate applications and command files.

Cobra is used in many Go projects such as Kubernetes, Hugo, and Github CLI to name a few. This list contains a more extensive list of projects using Cobra.

GoDoc Go Report Card Slack

Table of Contents

Overview

Cobra is a library providing a simple interface to create powerful modern CLI interfaces similar to git & go tools.

Cobra is also an application that will generate your application scaffolding to rapidly develop a Cobra-based application.

Cobra provides:

  • Easy subcommand-based CLIs: app server, app fetch, etc.
  • Fully POSIX-compliant flags (including short & long versions)
  • Nested subcommands
  • Global, local and cascading flags
  • Easy generation of applications & commands with cobra init appname & cobra add cmdname
  • Intelligent suggestions (app srver... did you mean app server?)
  • Automatic help generation for commands and flags
  • Automatic help flag recognition of -h, --help, etc.
  • Automatically generated shell autocomplete for your application (bash, zsh, fish, powershell)
  • Automatically generated man pages for your application
  • Command aliases so you can change things without breaking them
  • The flexibility to define your own help, usage, etc.
  • Optional tight integration with viper for 12-factor apps

Concepts

Cobra is built on a structure of commands, arguments & flags.

Commands represent actions, Args are things and Flags are modifiers for those actions.

The best applications read like sentences when used, and as a result, users intuitively know how to interact with them.

The pattern to follow is APPNAME VERB NOUN --ADJECTIVE. or APPNAME COMMAND ARG --FLAG

A few good real world examples may better illustrate this point.

In the following example, 'server' is a command, and 'port' is a flag:

hugo server --port=1313

In this command we are telling Git to clone the url bare.

git clone URL --bare

Commands

Command is the central point of the application. Each interaction that the application supports will be contained in a Command. A command can have children commands and optionally run an action.

In the example above, 'server' is the command.

More about cobra.Command

Flags

A flag is a way to modify the behavior of a command. Cobra supports fully POSIX-compliant flags as well as the Go flag package. A Cobra command can define flags that persist through to children commands and flags that are only available to that command.

In the example above, 'port' is the flag.

Flag functionality is provided by the pflag library, a fork of the flag standard library which maintains the same interface while adding POSIX compliance.

Installing

Using Cobra is easy. First, use go get to install the latest version of the library. This command will install the cobra generator executable along with the library and its dependencies:

go get -u github.com/spf13/cobra

Next, include Cobra in your application:

import "github.com/spf13/cobra"

Usage

See User Guide.

License

Cobra is released under the Apache 2.0 license. See LICENSE.txt