completion

package
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 22, 2022 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Command = &cobra.Command{
	Use:   "completion [bash|zsh|fish|powershell]",
	Short: "Generate completion script",
	Long: `To load completions:

Bash:

  $ source <(autoscaler completion bash)

  # To load completions for each session, execute once:
  # Linux:
  $ autoscaler completion bash > /etc/bash_completion.d/autoscaler
  # macOS:
  $ autoscaler completion bash > /usr/local/etc/bash_completion.d/autoscaler

Zsh:

  # If shell completion is not already enabled in your environment,
  # you will need to enable it.  You can execute the following once:

  $ echo "autoload -U compinit; compinit" >> ~/.zshrc

  # To load completions for each session, execute once:
  $ autoscaler completion zsh > "${fpath[1]}/_autoscaler"

  # You will need to start a new shell for this setup to take effect.

fish:

  $ autoscaler completion fish | source

  # To load completions for each session, execute once:
  $ autoscaler completion fish > ~/.config/fish/completions/autoscaler.fish

PowerShell:

  PS> autoscaler completion powershell | Out-String | Invoke-Expression

  # To load completions for every new session, run:
  PS> autoscaler completion powershell > autoscaler.ps1
  # and source this file from your PowerShell profile.
`,
	DisableFlagsInUseLine: true,
	ValidArgs:             []string{"bash", "zsh", "fish", "powershell"},
	Args:                  cobra.ExactValidArgs(1),
	RunE: func(cmd *cobra.Command, args []string) error {
		switch args[0] {
		case "bash":
			return cmd.Root().GenBashCompletion(os.Stdout)
		case "zsh":
			return cmd.Root().GenZshCompletion(os.Stdout)
		case "fish":
			return cmd.Root().GenFishCompletion(os.Stdout, true)
		case "powershell":
			return cmd.Root().GenPowerShellCompletionWithDesc(os.Stdout)
		}
		return nil
	},
}

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL