File size: 1,996 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | 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)
}
|