mirror of
https://github.com/ddworken/hishtory.git
synced 2024-11-23 08:45:16 +01:00
8b7e54eab4
* Add support for configuring the TUI color scheme, for #134 * Add tests for getting and setting the custom color scheme, and support full colors where terminals support them * Add comments to document termenv.ANSI setting, and fix tests so they work uniformly
151 lines
4.5 KiB
Go
151 lines
4.5 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/ddworken/hishtory/client/hctx"
|
|
"github.com/ddworken/hishtory/client/lib"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var GROUP_ID_CONFIG string = "group_id_config"
|
|
|
|
var configGetCmd = &cobra.Command{
|
|
Use: "config-get",
|
|
Short: "Get the value of a config option",
|
|
GroupID: GROUP_ID_CONFIG,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
lib.CheckFatalError(cmd.Help())
|
|
os.Exit(1)
|
|
},
|
|
}
|
|
|
|
var getEnableControlRCmd = &cobra.Command{
|
|
Use: "enable-control-r",
|
|
Short: "Whether hishtory replaces your shell's default control-r",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
fmt.Println(config.ControlRSearchEnabled)
|
|
},
|
|
}
|
|
|
|
var getHighlightMatchesCmd = &cobra.Command{
|
|
Use: "highlight-matches",
|
|
Short: "Whether hishtory highlights matches in the search results",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
fmt.Println(config.HighlightMatches)
|
|
},
|
|
}
|
|
|
|
var getFilterDuplicateCommandsCmd = &cobra.Command{
|
|
Use: "filter-duplicate-commands",
|
|
Short: "Whether hishtory filters out duplicate commands when displaying your history",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
fmt.Println(config.FilterDuplicateCommands)
|
|
},
|
|
}
|
|
|
|
var getEnableAiCompletion = &cobra.Command{
|
|
Use: "ai-completion",
|
|
Short: "Enable AI completion for searches starting with '?'",
|
|
Long: "Note that AI completion requests are sent to the shared hiSHtory backend and then to OpenAI. Requests are not logged, but still be careful not to put anything sensitive in queries.",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
fmt.Println(config.AiCompletion)
|
|
},
|
|
}
|
|
|
|
var getPresavingCmd = &cobra.Command{
|
|
Use: "presaving",
|
|
Short: "Enable 'presaving' of shell entries that never finish running",
|
|
Long: "If enabled, there is a slight risk of duplicate history entries. If disabled, non-terminating history entries will not be recorded.",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
fmt.Println(config.EnablePresaving)
|
|
},
|
|
}
|
|
|
|
var getBetaModeCmd = &cobra.Command{
|
|
Use: "beta-mode",
|
|
Short: "Enable beta-mode to opt-in to unreleased features",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
fmt.Println(config.BetaMode)
|
|
},
|
|
}
|
|
|
|
var getDisplayedColumnsCmd = &cobra.Command{
|
|
Use: "displayed-columns",
|
|
Short: "The list of columns that hishtory displays",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
for _, col := range config.DisplayedColumns {
|
|
if strings.Contains(col, " ") {
|
|
fmt.Printf("%q ", col)
|
|
} else {
|
|
fmt.Print(col + " ")
|
|
}
|
|
}
|
|
fmt.Print("\n")
|
|
},
|
|
}
|
|
|
|
var getTimestampFormatCmd = &cobra.Command{
|
|
Use: "timestamp-format",
|
|
Short: "The go format string to use for formatting the timestamp",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
fmt.Println(config.TimestampFormat)
|
|
},
|
|
}
|
|
|
|
var getCustomColumnsCmd = &cobra.Command{
|
|
Use: "custom-columns",
|
|
Short: "The list of custom columns that hishtory is tracking",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
for _, cc := range config.CustomColumns {
|
|
fmt.Println(cc.ColumnName + ": " + cc.ColumnCommand)
|
|
}
|
|
},
|
|
}
|
|
|
|
var getColorScheme = &cobra.Command{
|
|
Use: "color-scheme",
|
|
Short: "Get the currently configured color scheme for selected text in the TUI",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
fmt.Println("selected-text: " + config.ColorScheme.SelectedText)
|
|
fmt.Println("selected-background: " + config.ColorScheme.SelectedBackground)
|
|
fmt.Println("border-color: " + config.ColorScheme.BorderColor)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(configGetCmd)
|
|
configGetCmd.AddCommand(getEnableControlRCmd)
|
|
configGetCmd.AddCommand(getFilterDuplicateCommandsCmd)
|
|
configGetCmd.AddCommand(getDisplayedColumnsCmd)
|
|
configGetCmd.AddCommand(getTimestampFormatCmd)
|
|
configGetCmd.AddCommand(getCustomColumnsCmd)
|
|
configGetCmd.AddCommand(getBetaModeCmd)
|
|
configGetCmd.AddCommand(getHighlightMatchesCmd)
|
|
configGetCmd.AddCommand(getEnableAiCompletion)
|
|
configGetCmd.AddCommand(getPresavingCmd)
|
|
configGetCmd.AddCommand(getColorScheme)
|
|
}
|