diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-17 11:42:34 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-17 11:42:34 -0400 |
commit | 89ffd8653dfec30f66875bde71c997b511e2466c (patch) | |
tree | f83c433e6ffc08c2f99983d42ef0923cd6112820 /config | |
parent | 2ffbe7a6cd7882ce50163725104c8d9ea72102a8 (diff) | |
download | aerc-89ffd8653dfec30f66875bde71c997b511e2466c.tar.gz |
Implement ui.empty-message config option
Also removes some options that aren't going to be supported any time soon.
Diffstat (limited to 'config')
-rw-r--r-- | config/aerc.conf | 13 | ||||
-rw-r--r-- | config/config.go | 4 |
2 files changed, 0 insertions, 17 deletions
diff --git a/config/aerc.conf b/config/aerc.conf index 1211764..5db4cf0 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -16,25 +16,12 @@ index-format=%4C %Z %D %-17.17n %s timestamp-format=%F %l:%M %p # -# The frames of animation to use in the UI for things that are still loading. -# Seperate each frame with a comma. -# -# Default: "[..] , [..] , [..], [..] " (note extra spaces) -loading-frames=[..] , [..] , [..], [..] - -# # Width of the sidebar, including the border. # # Default: 20 sidebar-width=20 # -# Height of the message preview, including the border. -# -# Default: 12 -preview-height=12 - -# # Message to display when viewing an empty folder. # # Default: (no messages) diff --git a/config/config.go b/config/config.go index aee326f..aef796c 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, |