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

125 lines
3.3 KiB
Go
Raw Normal View History

2022-03-12 13:04:08 -08:00
/*
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
*/
package cli
2022-03-12 13:04:08 -08:00
import (
"fmt"
"oh-my-posh/color"
"oh-my-posh/console"
"oh-my-posh/engine"
"oh-my-posh/environment"
"github.com/spf13/cobra"
)
var (
pwd string
pswd string
exitCode int
timing float64
stackCount int
terminalWidth int
eval bool
command string
plain bool
)
// printCmd represents the prompt command
var printCmd = &cobra.Command{
Use: "print [debug|primary|secondary|transient|right|tooltip|valid|error]",
Short: "Print the prompt/context",
Long: "Print one of the prompts based on the location/use-case.",
ValidArgs: []string{
"debug",
"primary",
"secondary",
"transient",
"right",
"tooltip",
"valid",
"error",
},
Args: cobra.OnlyValidArgs,
Run: func(cmd *cobra.Command, args []string) {
env := &environment.ShellEnvironment{
CmdFlags: &environment.Flags{
Config: config,
PWD: pwd,
PSWD: pswd,
ErrorCode: exitCode,
ExecutionTime: timing,
StackCount: stackCount,
TerminalWidth: terminalWidth,
Eval: eval,
Shell: shell,
},
}
debug := args[0] == "debug"
env.Init(debug)
defer env.Close()
cfg := engine.LoadConfig(env)
ansi := &color.Ansi{}
ansi.Init(env.Shell())
var writer color.Writer
if plain {
writer = &color.PlainWriter{}
} else {
writerColors := cfg.MakeColors(env)
writer = &color.AnsiWriter{
Ansi: ansi,
TerminalBackground: engine.GetConsoleBackgroundColor(env, cfg.TerminalBackground),
AnsiColors: writerColors,
}
}
consoleTitle := &console.Title{
Env: env,
Ansi: ansi,
Template: cfg.ConsoleTitleTemplate,
Style: cfg.ConsoleTitleStyle,
}
eng := &engine.Engine{
Config: cfg,
Env: env,
Writer: writer,
ConsoleTitle: consoleTitle,
Ansi: ansi,
Plain: plain,
}
switch args[0] {
case "debug":
fmt.Print(eng.PrintDebug(cliVersion))
2022-03-12 13:04:08 -08:00
case "primary":
fmt.Print(eng.PrintPrimary())
case "secondary":
fmt.Print(eng.PrintExtraPrompt(engine.Secondary))
case "transient":
fmt.Print(eng.PrintExtraPrompt(engine.Transient))
case "right":
fmt.Print(eng.PrintRPrompt())
case "tooltip":
fmt.Print(eng.PrintTooltip(command))
case "valid":
fmt.Print(eng.PrintExtraPrompt(engine.Valid))
case "error":
fmt.Print(eng.PrintExtraPrompt(engine.Error))
}
},
}
func init() { // nolint:gochecknoinits
printCmd.Flags().StringVar(&pwd, "pwd", "", "current working directory")
printCmd.Flags().StringVar(&pswd, "pswd", "", "current working directory (according to pwsh)")
printCmd.Flags().StringVar(&shell, "shell", "", "the shell to print for")
printCmd.Flags().IntVarP(&exitCode, "exit", "e", 0, "last exit code")
printCmd.Flags().Float64VarP(&timing, "timing", "t", 0, "timing of the last command")
printCmd.Flags().IntVarP(&stackCount, "stack-count", "s", 0, "number of locations on the stack")
printCmd.Flags().IntVarP(&terminalWidth, "terminal-width", "w", 0, "width of the terminal")
printCmd.Flags().StringVar(&command, "command", "", "tooltip command")
printCmd.Flags().BoolVarP(&plain, "plain", "p", false, "plain text output (no ANSI)")
printCmd.Flags().BoolVar(&eval, "eval", false, "output the prompt for eval")
promptCmd.AddCommand(printCmd)
}