mirror of
https://github.com/ddworken/hishtory.git
synced 2024-11-23 16:53:10 +01:00
53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/ddworken/hishtory/client/hctx"
|
|
"github.com/ddworken/hishtory/client/lib"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var configAddCmd = &cobra.Command{
|
|
Use: "config-add",
|
|
Short: "Add a config option",
|
|
GroupID: GROUP_ID_CONFIG,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
lib.CheckFatalError(cmd.Help())
|
|
},
|
|
}
|
|
|
|
var addCustomColumnsCmd = &cobra.Command{
|
|
Use: "custom-columns",
|
|
Short: "Add a custom column",
|
|
Args: cobra.ExactArgs(2),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
columnName := args[0]
|
|
command := args[1]
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
if config.CustomColumns == nil {
|
|
config.CustomColumns = make([]hctx.CustomColumnDefinition, 0)
|
|
}
|
|
config.CustomColumns = append(config.CustomColumns, hctx.CustomColumnDefinition{ColumnName: columnName, ColumnCommand: command})
|
|
lib.CheckFatalError(hctx.SetConfig(config))
|
|
},
|
|
}
|
|
|
|
var addDisplayedColumnsCmd = &cobra.Command{
|
|
Use: "displayed-columns",
|
|
Short: "Add a column to be displayed",
|
|
Args: cobra.ExactArgs(1),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
ctx := hctx.MakeContext()
|
|
config := hctx.GetConf(ctx)
|
|
vals := args
|
|
config.DisplayedColumns = append(config.DisplayedColumns, vals...)
|
|
lib.CheckFatalError(hctx.SetConfig(config))
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(configAddCmd)
|
|
configAddCmd.AddCommand(addCustomColumnsCmd)
|
|
configAddCmd.AddCommand(addDisplayedColumnsCmd)
|
|
}
|