mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2026-08-24 10:14:12 -05:00
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/jandedobbeleer/oh-my-posh/src/cache"
|
|
"github.com/jandedobbeleer/oh-my-posh/src/config"
|
|
"github.com/jandedobbeleer/oh-my-posh/src/dsc"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// configCmd represents the config command
|
|
var configCmd = &cobra.Command{
|
|
Use: "config edit",
|
|
Short: "Interact with the config",
|
|
Long: `Interact with the config.
|
|
|
|
You can export, migrate or edit the config (via the editor specified in the environment variable "EDITOR").`,
|
|
ValidArgs: []string{
|
|
"edit",
|
|
},
|
|
Args: NoArgsOrOneValidArg,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if len(args) == 0 {
|
|
_ = cmd.Help()
|
|
return
|
|
}
|
|
|
|
switch args[0] {
|
|
case "edit":
|
|
cache.Init(os.Getenv("POSH_SHELL"), false)
|
|
if configPath, OK := cache.Get[string](cache.Session, config.SourceKey); OK {
|
|
exitcode = editFileWithEditor(configPath)
|
|
return
|
|
}
|
|
|
|
fmt.Println("no config found in session cache")
|
|
exitcode = 666
|
|
default:
|
|
_ = cmd.Help()
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
configCmd.AddCommand(dsc.Command(config.DSC()))
|
|
RootCmd.AddCommand(configCmd)
|
|
}
|