summaryrefslogtreecommitdiff
path: root/alot/commands/common.py
diff options
context:
space:
mode:
authorMichael J Gruber <github@grubix.eu>2018-03-08 09:20:20 +0100
committerMichael J Gruber <github@grubix.eu>2018-06-22 11:32:15 +0200
commit0a1840b3940db108277de1c113a5c29dd74d7d33 (patch)
tree297b9bb2db06b2223cc5301e661bd153cc98721f /alot/commands/common.py
parent35ef660f7883428da3ba0ad27d267725293a65a9 (diff)
provide retagprompt command in thread mode
retagprompt in search mode allows to retag a whole thread. The new thread mode version allows to do the same for each selected message. The common command infers its mode from the UI object that it is passed when applied. Therefore, the docstring (and everything else) is mode-agnostic. When this command command is registered for the wrong mode and applied it raises a KeyError (on purpose).
Diffstat (limited to 'alot/commands/common.py')
-rw-r--r--alot/commands/common.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/alot/commands/common.py b/alot/commands/common.py
index 64e68d49..71280d38 100644
--- a/alot/commands/common.py
+++ b/alot/commands/common.py
@@ -9,13 +9,16 @@ from .globals import PromptCommand
class RetagPromptCommand(Command):
- """prompt to retag selected threads\' tags"""
+ """prompt to retag selected thread's or message's tags"""
def apply(self, ui):
- thread = ui.current_buffer.get_selected_thread()
- if not thread:
+ get_selected_item = getattr(ui.current_buffer, {
+ 'search': 'get_selected_thread',
+ 'thread': 'get_selected_message'}[ui.mode])
+ item = get_selected_item()
+ if not item:
return
tags = []
- for tag in thread.get_tags():
+ for tag in item.get_tags():
if ' ' in tag:
tags.append('"%s"' % tag)
# skip empty tags