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

127 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"
2022-03-21 23:41:36 -07:00
"oh-my-posh/shell"
2022-03-12 13:04:08 -08:00
"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{
2022-03-15 12:16:04 -07:00
Use: "print [debug|primary|secondary|transient|right|tooltip|valid|error]",
2022-03-12 13:04:08 -08:00
Short: "Print the prompt/context",
Long: "Print one of the prompts based on the location/use-case.",
ValidArgs: []string{
2022-03-15 12:16:04 -07:00
"debug",
2022-03-12 13:04:08 -08:00
"primary",
"secondary",
"transient",
"right",
"tooltip",
"valid",
"error",
},
Args: cobra.OnlyValidArgs,
Run: func(cmd *cobra.Command, args []string) {
env := &environment.ShellEnvironment{
Version: cliVersion,
2022-03-12 13:04:08 -08:00
CmdFlags: &environment.Flags{
Config: config,
PWD: pwd,
PSWD: pswd,
ErrorCode: exitCode,
ExecutionTime: timing,
StackCount: stackCount,
TerminalWidth: terminalWidth,
Eval: eval,
2022-03-21 23:41:36 -07:00
Shell: shellName,
2022-03-12 13:04:08 -08:00
},
}
2022-03-15 12:02:46 -07:00
env.Init(false)
2022-03-12 13:04:08 -08:00
defer env.Close()
cfg := engine.LoadConfig(env)
ansi := &color.Ansi{}
2022-03-15 12:02:46 -07:00
ansi.Init(env.Shell())
2022-03-12 13:04:08 -08:00
var writer color.Writer
if plain {
writer = &color.PlainWriter{}
} else {
writerColors := cfg.MakeColors(env)
writer = &color.AnsiWriter{
Ansi: ansi,
2022-03-21 23:41:36 -07:00
TerminalBackground: shell.ConsoleBackgroundColor(env, cfg.TerminalBackground),
2022-03-12 13:04:08 -08:00
AnsiColors: writerColors,
}
}
consoleTitle := &console.Title{
Env: env,
Ansi: ansi,
Template: cfg.ConsoleTitleTemplate,
}
eng := &engine.Engine{
Config: cfg,
Env: env,
Writer: writer,
ConsoleTitle: consoleTitle,
Ansi: ansi,
Plain: plain,
}
switch args[0] {
2022-03-15 12:16:04 -07:00
case "debug":
fmt.Print(eng.PrintExtraPrompt(engine.Debug))
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))
2022-03-19 11:48:37 -07:00
default:
_ = cmd.Help()
2022-03-12 13:04:08 -08:00
}
},
}
func init() { // nolint:gochecknoinits
printCmd.Flags().StringVar(&pwd, "pwd", "", "current working directory")
printCmd.Flags().StringVar(&pswd, "pswd", "", "current working directory (according to pwsh)")
2022-03-21 23:41:36 -07:00
printCmd.Flags().StringVar(&shellName, "shell", "", "the shell to print for")
printCmd.Flags().IntVarP(&exitCode, "error", "e", 0, "last exit code")
printCmd.Flags().Float64Var(&timing, "execution-time", 0, "timing of the last command")
2022-03-12 13:04:08 -08:00
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")
2022-03-25 11:03:37 -07:00
rootCmd.AddCommand(printCmd)
2022-03-12 13:04:08 -08:00
}