summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-01-21 23:32:15 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2012-01-21 23:32:15 +0000
commite4419fd3648f29ec2ad7def147d67d3acabef8c9 (patch)
tree68911b9d3e6fcec4f76dde5d19a39c5ee26a9f1e
parent1b7c3db3ef4f2bb90ebddebf9710f4c244fdc801 (diff)
nicer docstrings for buffers=modes
-rw-r--r--alot/buffers.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/alot/buffers.py b/alot/buffers.py
index b544c06d..b7d7cd8b 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -40,7 +40,7 @@ class Buffer(object):
class BufferlistBuffer(Buffer):
- """selectable list of active buffers"""
+ """lists all active buffers"""
modename = 'bufferlist'
@@ -136,10 +136,7 @@ class EnvelopeBuffer(Buffer):
class SearchBuffer(Buffer):
- """
- shows a result set for a Thread query, one line per
- :class:`~alot.db.Thread`
- """
+ """shows a result list of threads for a query"""
modename = 'search'
threads = []
@@ -220,8 +217,7 @@ class SearchBuffer(Buffer):
class ThreadBuffer(Buffer):
- """shows a single mailthread as a (collapsible) tree of
- :class:`MessageWidgets <alot.widgets.MessageWidget>`."""
+ """displays a thread as a tree of messages"""
modename = 'thread'
@@ -323,7 +319,7 @@ class ThreadBuffer(Buffer):
class TagListBuffer(Buffer):
- """selectable list of tagstrings present in the database"""
+ """lists all tagstrings present in the notmuch database"""
modename = 'taglist'