aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/tools/console/help.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/tools/console/help.py')
-rw-r--r--mitmproxy/tools/console/help.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/help.py b/mitmproxy/tools/console/help.py
index fb4e0051..5a7bbb9a 100644
--- a/mitmproxy/tools/console/help.py
+++ b/mitmproxy/tools/console/help.py
@@ -51,10 +51,22 @@ class HelpView(tabs.Tabs, layoutwidget.LayoutWidget):
text = [
urwid.Text(
[
- ("title", "Keybindings for this view")
+ ("title", "Common Keybindings")
]
)
+
]
+
+ text.extend(self.format_keys(self.master.keymap.list("commonkey")))
+
+ text.append(
+ urwid.Text(
+ [
+ "\n",
+ ("title", "Keybindings for this view")
+ ]
+ )
+ )
if self.helpctx:
text.extend(self.format_keys(self.master.keymap.list(self.helpctx)))