Skip to content

Commit

Permalink
generate autocompletions
Browse files Browse the repository at this point in the history
  • Loading branch information
luludotdev committed Aug 27, 2020
1 parent 0619746 commit 90beda3
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions autodns/cmd/completion.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
package cmd

import (
"os"

"github.com/spf13/cobra"
)

var (
completionCmd = &cobra.Command{
Use: "completion [bash|zsh|fish|powershell]",
Short: "Generate completion script",
Long: `To load completions:
Bash:
$ source <(autodns completion bash)
# To load completions for each session, execute once:
Linux:
$ autodns completion bash > /etc/bash_completion.d/autodns
MacOS:
$ autodns completion bash > /usr/local/etc/bash_completion.d/autodns
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:
$ autodns completion zsh > "${fpath[1]}/_autodns"
# You will need to start a new shell for this setup to take effect.
Fish:
$ autodns completion fish | source
# To load completions for each session, execute once:
$ autodns completion fish > ~/.config/fish/completions/autodns.fish
`,
DisableFlagsInUseLine: true,
ValidArgs: []string{"bash", "zsh", "fish", "powershell"},
Args: cobra.ExactValidArgs(1),
Run: func(cmd *cobra.Command, args []string) {
switch args[0] {
case "bash":
cmd.Root().GenBashCompletion(os.Stdout)
case "zsh":
cmd.Root().GenZshCompletion(os.Stdout)
case "fish":
cmd.Root().GenFishCompletion(os.Stdout, true)
case "powershell":
cmd.Root().GenPowerShellCompletion(os.Stdout)
}
},
}
)

func init() {
rootCmd.AddCommand(completionCmd)
}

0 comments on commit 90beda3

Please sign in to comment.