summary refs log tree commit diff stats
path: root/config
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-05-17 11:42:34 -0400
committerDrew DeVault <sir@cmpwn.com>2019-05-17 11:42:34 -0400
commit89ffd8653dfec30f66875bde71c997b511e2466c (patch)
treef83c433e6ffc08c2f99983d42ef0923cd6112820 /config
parent2ffbe7a6cd7882ce50163725104c8d9ea72102a8 (diff)
downloadaerc-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.conf13
-rw-r--r--config/config.go4
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,
c */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
Console

   (X) #0   09/12/06  console commands
   (X) #1   09/12/06  quick find
   (X) #2   09/12/06  open with
   (X) #4   09/12/06  history for console
   (X) #13  09/12/27  display docstring of a command


General

   (X) #5   09/12/06  move code from fm into objects
   (X) #6   09/12/06  move main to __init__
   (X) #7   09/12/06  cooler titlebar
   (X) #8   09/12/17  Add operations to modify files/directories
   (X) #9   09/12/24  add a widget for managing running operations
   (X) #10  09/12/24  sorting
   (X) #11  09/12/27  filter
   (X) #12  09/12/27  jump through the list in a specific order
   (X) #14  09/12/29  make filelists inherit from pagers
   (X) #15  09/12/29  better way of running processes!!~
   (X) #16  10/01/01  list of bookmarks
   (X) #21  10/01/01  write help!
   (X) #22  10/01/03  add getopt options to change flags/mode
   (X) #29  10/01/06  add chmod command
   (X) #30  10/01/06  add a way to create symlinks
   (X) #32  10/01/08  place the (hidden) cursor to a meaningful position
   (X) #34  10/01/09  display free disk space
   (X) #35  10/01/09  display disk usage of files in current directory
   ( ) #36  10/01/11  help coloring is terribly inefficient
   ( ) #37  10/01/13  better tab completion for OpenConsole
   ( ) #38  10/01/16  searching in pager
   (X) #39  10/01/17  flushinput not always good
   (X) #42  10/01/17  memorize directory for `` when using :cd
   (X) #43  10/01/18  internally treat the bookmarks ` and ' the same
   ( ) #44  10/01/18  more error messages :P
   (X) #47  10/01/19  less restricive auto preview
   (X) #48  10/01/19  abbreviate commands with first unambiguous substring
   ( ) #50  10/01/19  add more unit tests
   ( ) #51  10/01/21  remove directory.marked_items ?


Bugs

   (X) #17  10/01/01  why do bookmarks disappear sometimes?
   (X) #18  10/01/01  fix notify widget (by adding a LogView?)
   (X) #19  10/01/01  resizing after pressing g
   (X) #23  10/01/04  stop dir loading with ^C -> wont load anymore
   (X) #25  10/01/06  directories sometimes dont reload correctly
   (X) #26  10/01/06  :delete on symlinks of directories fails
   (X) #31  10/01/06  ^C breaks cd-after-exit by stopping sourced shell script
   ( ) #40  10/01/17  freeze with unavailable sshfs
   (X) #41  10/01/17  capital file extensions are not recognized
   ( ) #46  10/01/19  old username displayed after using su
   (X) #49  10/01/19  fix unit tests :'(


Ideas

   ( ) #20  10/01/01  use inotify to monitor filesystem changes
   ( ) #24  10/01/06  progress bar
   (X) #27  10/01/06  hide bookmarks in list which contain hidden dir
   (X) #28  10/01/06  use regexp instead of string for searching
   ( ) #33  10/01/08  accelerate mousewheel speed
   ( ) #45  10/01/18  hooks for events like setting changes