oh-my-posh/src/cli/prompt.go

25 lines
538 B
Go

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 (deprecated)",
Long: `Set up the prompt for your shell. (deprecated)`,
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
_ = cmd.Help()
},
}
func init() { //nolint:gochecknoinits
// legacy support
promptCmd.AddCommand(initCmd)
promptCmd.AddCommand(debugCmd)
promptCmd.AddCommand(printCmd)
rootCmd.AddCommand(promptCmd)
}