summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2017-08-05 01:31:37 +0200
committerLucas Hoffmann <l-m-h@web.de>2017-08-05 01:34:13 +0200
commit21feaf10a4c45306392669348a98040d653e4ea6 (patch)
tree17981479e5d68f73e11f376dc4f0727bf35f3f88 /alot
parent29f2ae421bb13ff578dd4e305e0a46fe4fdc367e (diff)
docs: Update docstrings for move commands
Diffstat (limited to 'alot')
-rw-r--r--alot/commands/globals.py2
-rw-r--r--alot/commands/thread.py6
2 files changed, 6 insertions, 2 deletions
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 7c590802..79b7e5f6 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -927,7 +927,7 @@ class ComposeCommand(Command):
arguments=[
(['movement'],
{'nargs': argparse.REMAINDER,
- 'help': 'up, down, [half]page up, [half]page down, first'})])
+ 'help': 'up, down, [half]page up, [half]page down, first, last'})])
class MoveCommand(Command):
"""move in widget"""
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index f565ceb3..9ebed119 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -1000,7 +1000,11 @@ class OpenAttachmentCommand(Command):
arguments=[
(['movement'],
{'nargs': argparse.REMAINDER,
- 'help': 'up, down, page up, page down, first, last'})])
+ 'help': '''up, down, [half]page up, [half]page down, first, last, \
+ parent, first reply, last reply, \
+ next sibling, previous sibling, next, previous, \
+ next unfolded, previous unfolded, \
+ next NOTMUCH_QUERY, previous NOTMUCH_QUERY'''})])
class MoveFocusCommand(MoveCommand):
def apply(self, ui):