From dde30105810b5f6c41b0974e528ce5c051d22c79 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 12 Jun 2014 16:06:02 +0200 Subject: Use Ctrl-b as in Emacs, not as in Vim --- alot/widgets/globals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alot') 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)) -- cgit v1.2.3