summaryrefslogtreecommitdiff
path: root/alot/commands/search.py
diff options
context:
space:
mode:
authorEmmanuel Beffara <manu@beffara.org>2013-08-20 14:03:19 +0200
committerPatrick Totzke <patricktotzke@gmail.com>2013-08-24 12:51:48 +0100
commitc709b53c1fab6052d409ed4e6b949e365f9f70a9 (patch)
treee9eee87ea70f83381f13b595788b373928159936 /alot/commands/search.py
parenta0995f923dd26a42f9c8510d29ee27aae71c0ac3 (diff)
fix the documentation for tag/untag/retag commands in search mode
Diffstat (limited to 'alot/commands/search.py')
-rw-r--r--alot/commands/search.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/alot/commands/search.py b/alot/commands/search.py
index b5fac4bc..d7a31ca6 100644
--- a/alot/commands/search.py
+++ b/alot/commands/search.py
@@ -116,7 +116,7 @@ class RetagPromptCommand(Command):
(['--all'], {'action': 'store_true', 'dest': 'allmessages', 'default':
False, 'help': 'retag all messages in search result'}),
(['tags'], {'help': 'comma separated list of tags'})],
- help='add tags to all messages in the thread',
+ help='add tags to all messages in the thread that match the current query',
)
@registerCommand(MODE, 'retag', forced={'action': 'set'}, arguments=[
(['--no-flush'], {'action': 'store_false', 'dest': 'flush',
@@ -125,7 +125,7 @@ class RetagPromptCommand(Command):
(['--all'], {'action': 'store_true', 'dest': 'allmessages', 'default':
False, 'help': 'retag all messages in search result'}),
(['tags'], {'help': 'comma separated list of tags'})],
- help='set tags of all messages in the thread',
+ help='set tags of all messages in the thread that match the current query',
)
@registerCommand(MODE, 'untag', forced={'action': 'remove'}, arguments=[
(['--no-flush'], {'action': 'store_false', 'dest': 'flush',
@@ -134,7 +134,7 @@ class RetagPromptCommand(Command):
(['--all'], {'action': 'store_true', 'dest': 'allmessages', 'default':
False, 'help': 'retag all messages in search result'}),
(['tags'], {'help': 'comma separated list of tags'})],
- help='remove tags from all messages in the thread',
+ help='remove tags from all messages in the thread that match the current query',
)
@registerCommand(MODE, 'toggletags', forced={'action': 'toggle'}, arguments=[
(['--no-flush'], {'action': 'store_false', 'dest': 'flush',