Files
pmg/internal/ui/info.go
T

35 lines
1.0 KiB
Go
Raw Normal View History

package ui
import (
"fmt"
"sort"
)
// PrintInfoSection prints a formatted block of key-value information.
func PrintInfoSection(title string, entries map[string]string) {
fmt.Println()
fmt.Println(Colors.Cyan(title))
fmt.Println(Colors.Normal("--------------------"))
// Sort keys for consistent output
keys := make([]string, 0, len(entries))
for k := range entries {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
padded := fmt.Sprintf("%-25s", k)
fmt.Printf("%s: %s\n", Colors.Bold(padded), entries[k])
}
}
2026-01-27 21:24:08 +05:30
// PrintSetupInstallCmdInfo prints a success message with the alias & config path, and a restart reminder.
func PrintSetupInstallCmdInfo(rcPath, configPath string) {
fmt.Printf("%s %s\n", Colors.Green("✓"), "PMG aliases installed successfully")
fmt.Printf(" %s\n", Colors.Dim(fmt.Sprintf("Installed to: %s", rcPath)))
fmt.Printf(" %s\n", Colors.Dim(fmt.Sprintf("Config at: %s", configPath)))
fmt.Printf(" %s\n", Colors.Dim("Restart your terminal or source your shell to use the new aliases"))
}