aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2018-02-16 22:22:39 +0100
committerMaximilian Hils <git@maximilianhils.com>2018-02-16 22:22:39 +0100
commit11c739fe1827ca8d9af3a1e40b7f9f7dce55057d (patch)
tree21412fd32fd47614684689a1ec0795348d48ef68
parent04c3079aa285bf57f1e5b59a16bf42bae1957e86 (diff)
downloadmitmproxy-11c739fe1827ca8d9af3a1e40b7f9f7dce55057d.tar.gz
mitmproxy-11c739fe1827ca8d9af3a1e40b7f9f7dce55057d.tar.bz2
mitmproxy-11c739fe1827ca8d9af3a1e40b7f9f7dce55057d.zip
add ctrl + right as an alias, fix #2720
-rw-r--r--mitmproxy/tools/console/defaultkeys.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mitmproxy/tools/console/defaultkeys.py b/mitmproxy/tools/console/defaultkeys.py
index 084ef262..c7876288 100644
--- a/mitmproxy/tools/console/defaultkeys.py
+++ b/mitmproxy/tools/console/defaultkeys.py
@@ -11,6 +11,7 @@ def map(km):
km.add("q", "console.view.pop", ["global"], "Exit the current view")
km.add("-", "console.layout.cycle", ["global"], "Cycle to next layout")
km.add("shift tab", "console.panes.next", ["global"], "Focus next layout pane")
+ km.add("ctrl right", "console.panes.next", ["global"], "Focus next layout pane")
km.add("P", "console.view.flow @focus", ["global"], "View flow details")
km.add("g", "console.nav.start", ["global"], "Go to start")