From ae1bf69a3d45a7cd59cbc27775657e8706b944d8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 26 Jan 2024 17:24:45 +0530 Subject: [PATCH] Fix date in changelog --- docs/changelog.rst | 2 +- kitty_tests/keys.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 1a5eb6e26..814f533e3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -43,7 +43,7 @@ The :doc:`ssh kitten ` is redesigned with powerful new features: Detailed list of changes ------------------------------------- -0.32.1 [2024-02-26] +0.32.1 [2024-01-26] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - macOS: Fix a regression in the previous release that broke overriding keyboard shortcuts for actions present in the global menu bar (:iss:`7016`) diff --git a/kitty_tests/keys.py b/kitty_tests/keys.py index 49a949c00..410abbb70 100644 --- a/kitty_tests/keys.py +++ b/kitty_tests/keys.py @@ -594,7 +594,7 @@ class TestKeys(BaseTest): tm = TM('map kitty_mod+enter') self.ae(tm('ctrl+shift+enter'), [False]) - # single key mapping overrides all multi-key mappings with same prefix + # single key mapping overrides previous all multi-key mappings with same prefix tm = TM('map kitty_mod+p new_window') self.ae(tm('ctrl+shift+p', 'f'), [True, False]) self.ae(tm.actions, ['new_window'])