From 5df0b9e9610b803241f8c4870ddfe3afb450a048 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Wed, 8 Feb 2012 22:55:48 +1300 Subject: Further keybinding consolidation. Also, move KVEditor's "i" binding to "A" to avoid clashes with global bindings. --- libmproxy/console/kveditor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmproxy/console/kveditor.py') diff --git a/libmproxy/console/kveditor.py b/libmproxy/console/kveditor.py index 7afcd08d..632a6992 100644 --- a/libmproxy/console/kveditor.py +++ b/libmproxy/console/kveditor.py @@ -7,10 +7,10 @@ from .. import utils def _mkhelp(): text = [] keys = [ + ("A", "insert row before cursor"), ("a", "add row after cursor"), ("d", "delete row"), ("e", "spawn external editor on current field"), - ("i", "insert row before cursor"), ("q", "return to flow view"), ("esc", "return to flow view/exit field edit mode"), ("tab", "next field"), @@ -215,7 +215,7 @@ class KVEditor(common.WWrap): self.walker.tab_next() elif key == "a": self.walker.add() - elif key == "i": + elif key == "A": self.walker.insert() elif key == "d": self.walker.delete_focus() -- cgit v1.2.3