From 64a202a12530fd641fc6a3b1d22720876c516f49 Mon Sep 17 00:00:00 2001 From: pagedown Date: Wed, 24 Aug 2022 13:26:50 +0800 Subject: [PATCH] Docs: Using the lowercase form of the key name consistently --- kitty/boss.py | 2 +- kitty/window.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kitty/boss.py b/kitty/boss.py index 5db05e655..cc433c955 100644 --- a/kitty/boss.py +++ b/kitty/boss.py @@ -561,7 +561,7 @@ class Boss: For example:: - map F1 remote_control set-spacing margin=30 + map f1 remote_control set-spacing margin=30 See :ref:`rc_mapping` for details. ''') diff --git a/kitty/window.py b/kitty/window.py index b797db4c8..cf72414f0 100644 --- a/kitty/window.py +++ b/kitty/window.py @@ -1665,7 +1665,7 @@ class Window: For example:: - map F1 signal_child SIGTERM + map f1 signal_child SIGTERM ''') def signal_child(self, *signals: int) -> None: pid = self.child.pid_for_cwd @@ -1679,9 +1679,9 @@ class Window: For example:: # show the config docs - map F1 show_kitty_doc conf + map f1 show_kitty_doc conf # show the ssh kitten docs - map F1 show_kitty_doc kittens/ssh + map f1 show_kitty_doc kittens/ssh ''') def show_kitty_doc(self, which: str = '') -> None: url = docs_url(which)