summaryrefslogtreecommitdiff
path: root/alot/widgets/globals.py
diff options
context:
space:
mode:
authorYour Name <you@example.com>2014-06-12 16:06:02 +0200
committerPatrick Totzke <patricktotzke@gmail.com>2014-08-02 17:36:46 +0200
commitdde30105810b5f6c41b0974e528ce5c051d22c79 (patch)
treed244acdc515a79e16aaee466916bd034c38ebdb6 /alot/widgets/globals.py
parent754c890a978e93bbaa45460341034360105c979f (diff)
Use Ctrl-b as in Emacs, not as in Vim
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))