aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/help.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-02-08 22:28:15 +1300
committerAldo Cortesi <aldo@nullcube.com>2012-02-08 22:28:15 +1300
commit866a93a8bc28fed47dde04f49c13592a7163bff4 (patch)
treec1620ebf1809a1cdce2771a2399c393d537e12ab /libmproxy/console/help.py
parente3f28e1c06093147660e2857adce24b441d6530f (diff)
downloadmitmproxy-866a93a8bc28fed47dde04f49c13592a7163bff4.tar.gz
mitmproxy-866a93a8bc28fed47dde04f49c13592a7163bff4.tar.bz2
mitmproxy-866a93a8bc28fed47dde04f49c13592a7163bff4.zip
Start consolidating keybindings.
I want each view to have a more coherent set of bindings. This means minimizing the global bindings, and making some bindings accessible only from screens related to their functionality.
Diffstat (limited to 'libmproxy/console/help.py')
-rw-r--r--libmproxy/console/help.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/libmproxy/console/help.py b/libmproxy/console/help.py
index b2eafbf0..0c710c7b 100644
--- a/libmproxy/console/help.py
+++ b/libmproxy/console/help.py
@@ -28,28 +28,12 @@ class HelpView(urwid.ListBox):
text.append(("head", "\n\nGlobal keys:\n"))
keys = [
- ("A", "accept all intercepted connections"),
- ("a", "accept this intercepted connection"),
("c", "client replay"),
("i", "set interception pattern"),
("j, k", "up, down"),
("l", "set limit filter pattern"),
("L", "load saved flows"),
- ("m", "change body display mode"),
- (None,
- common.highlight_key("raw", "r") +
- [("text", ": raw data")]
- ),
- (None,
- common.highlight_key("pretty", "p") +
- [("text", ": pretty-print XML, HTML and JSON")]
- ),
- (None,
- common.highlight_key("hex", "h") +
- [("text", ": hex dump")]
- ),
-
("o", "toggle options:"),
(None,
common.highlight_key("anticache", "a") +
@@ -78,7 +62,6 @@ class HelpView(urwid.ListBox):
("u", "set sticky auth expression"),
("w", "save all flows matching current limit"),
("W", "save this flow"),
- ("|", "run script on this flow"),
("space", "page down"),
("pg up/down", "page up/down"),
]