From 89ffd8653dfec30f66875bde71c997b511e2466c Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 17 May 2019 11:42:34 -0400 Subject: Implement ui.empty-message config option Also removes some options that aren't going to be supported any time soon. --- config/config.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index aee326f2..aef796cd 100644 --- a/config/config.go +++ b/config/config.go @@ -17,7 +17,6 @@ type UIConfig struct { IndexFormat string `ini:"index-format"` TimestampFormat string `ini:"timestamp-format"` ShowHeaders []string `delim:","` - LoadingFrames []string `delim:","` RenderAccountTabs string `ini:"render-account-tabs"` SidebarWidth int `ini:"sidebar-width"` PreviewHeight int `ini:"preview-height"` @@ -171,9 +170,6 @@ func LoadConfig(root *string) (*AercConfig, error) { ShowHeaders: []string{ "From", "To", "Cc", "Bcc", "Subject", "Date", }, - LoadingFrames: []string{ - "[..] ", " [..] ", " [..]", " [..] ", - }, RenderAccountTabs: "auto", SidebarWidth: 20, PreviewHeight: 12, -- cgit