summaryrefslogtreecommitdiff
path: root/alot/widgets/globals.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/widgets/globals.py')
-rw-r--r--alot/widgets/globals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/widgets/globals.py b/alot/widgets/globals.py
index a72e7d65..ada73788 100644
--- a/alot/widgets/globals.py
+++ b/alot/widgets/globals.py
@@ -167,7 +167,7 @@ class CompleteEdit(urwid.Edit):
self.on_exit(self.edit_text)
elif key == 'esc':
self.on_exit(None)
- elif key in ('ctrl a', 'ctrl b'):
+ elif key == 'ctrl a':
self.set_edit_pos(0)
elif key == 'ctrl e':
self.set_edit_pos(len(self.edit_text))