From a729179f9fae4a89a0b65984263a7893fcab874a Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 15 Mar 2019 20:40:28 -0400 Subject: Implement sidebar-width config option --- config/config.go | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index ff0e094..173d4af 100644 --- a/config/config.go +++ b/config/config.go @@ -11,14 +11,14 @@ import ( ) type UIConfig struct { - IndexFormat string - TimestampFormat string + IndexFormat string `ini:"index-format"` + TimestampFormat string `ini:"timestamp-format"` ShowHeaders []string `delim:","` LoadingFrames []string `delim:","` - RenderAccountTabs string - SidebarWidth int - PreviewHeight int - EmptyMessage string + RenderAccountTabs string `ini:"render-account-tabs"` + SidebarWidth int `ini:"sidebar-width"` + PreviewHeight int `ini:"preview-height"` + EmptyMessage string `ini:"empty-message"` } type AccountConfig struct { @@ -114,7 +114,10 @@ func LoadConfig(root *string) (*AercConfig, error) { }, } if ui, err := file.GetSection("ui"); err == nil { - ui.MapTo(config.Ui) + if err := ui.MapTo(&config.Ui); err != nil { + return nil, err + } + fmt.Printf("%v\n", config.Ui) } if lbinds, err := file.GetSection("lbinds"); err == nil { for key, value := range lbinds.KeysHash() { -- cgit v1.2.3