package main import ( "os" "github.com/spf13/cobra" ) var completionCmd = &cobra.Command{ Use: "completion [bash|zsh|fish|powershell]", Short: "Generate shell completion script", Long: `Generate a shell completion script for pinchtab. To load completions: Bash: $ source <(pinchtab completion bash) # To load completions for each session, execute once: # Linux: $ pinchtab completion bash > /etc/bash_completion.d/pinchtab # macOS: $ pinchtab completion bash > $(brew --prefix)/etc/bash_completion.d/pinchtab 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: $ pinchtab completion zsh > "${fpath[1]}/_pinchtab" # You will need to start a new shell for this setup to take effect. Fish: $ pinchtab completion fish | source # To load completions for each session, execute once: $ pinchtab completion fish > ~/.config/fish/completions/pinchtab.fish PowerShell: PS> pinchtab completion powershell | Out-String | Invoke-Expression # To load completions for every new session, add the output to your profile: PS> pinchtab completion powershell > pinchtab.ps1 # and source this file from your PowerShell profile. `, DisableFlagsInUseLine: true, ValidArgs: []string{"bash", "zsh", "fish", "powershell"}, Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs), RunE: func(cmd *cobra.Command, args []string) error { switch args[0] { case "bash": return rootCmd.GenBashCompletion(os.Stdout) case "zsh": return rootCmd.GenZshCompletion(os.Stdout) case "fish": return rootCmd.GenFishCompletion(os.Stdout, true) case "powershell": return rootCmd.GenPowerShellCompletionWithDesc(os.Stdout) } return nil }, } func init() { completionCmd.GroupID = "config" rootCmd.AddCommand(completionCmd) }