oh-my-posh/src/cli/prompt.go
2022-03-19 19:56:27 +01:00

25 lines
526 B
Go

/*
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
*/
package cli
import (
"github.com/spf13/cobra"
)
// promptCmd represents the prompt command
var promptCmd = &cobra.Command{
Use: "prompt",
Short: "Set up the prompt for your shell",
Long: `Set up the prompt for your shell
Allows to initialize one of the supported shells, or to set the prompt manually for a custom shell.`,
Run: func(cmd *cobra.Command, args []string) {
_ = cmd.Help()
},
}
func init() { // nolint:gochecknoinits
rootCmd.AddCommand(promptCmd)
}