sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit a7072d33045db9dc60cfebd7852b9e36970dd37b
parent 34d510a99267de3e3d32cf5bbc219f8ee417888b
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Fri, 19 Jan 2007 16:35:20 +0000

added # message in index on the status line


git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@267 5c8cc53c-5e98-4d25-b20a-d8db53a31250

Diffstat:
M lib/sup/modes/inbox-mode.rb | 4 ++++
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/lib/sup/modes/inbox-mode.rb b/lib/sup/modes/inbox-mode.rb
@@ -24,6 +24,10 @@ class InboxMode < ThreadIndexMode
     regen_text
   end
 
+  def status
+    super + "    #{Index.size} messages in index"
+  end
+
   def is_relevant? m; m.has_label? :inbox; end
 
   def load_threads opts={}