summaryrefslogtreecommitdiff
path: root/alot/commands/taglist.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-12-10 14:18:52 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2011-12-10 14:20:36 +0000
commiteada26f35ee24bbb71d1fbbba8f6f78f09954da1 (patch)
treecbbd3cc1c539065b59c74020a2bfbd58010d32bf /alot/commands/taglist.py
parent938b71a2c7fda0c51925da7c212f07e77e182c92 (diff)
docstrings for search and bufferlist commands
Diffstat (limited to 'alot/commands/taglist.py')
-rw-r--r--alot/commands/taglist.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/commands/taglist.py b/alot/commands/taglist.py
index 8b896fc9..8700dc53 100644
--- a/alot/commands/taglist.py
+++ b/alot/commands/taglist.py
@@ -4,8 +4,9 @@ from alot.commands.globals import SearchCommand
MODE = 'taglist'
-@registerCommand(MODE, 'select', help='open search for selected tag')
+@registerCommand(MODE, 'select')
class TaglistSelectCommand(Command):
+ """search for messages with selected tag"""
def apply(self, ui):
tagstring = ui.current_buffer.get_selected_tag()
cmd = SearchCommand(query=['tag:"%s"' % tagstring])