From 2de0c82f180cf1381b76fab371486997db496985 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 15 Sep 2017 10:44:56 +0530 Subject: [PATCH] Fix incorrect full keyboard mode escape codes --- kitty/keys.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kitty/keys.py b/kitty/keys.py index 02283c0d9..abf4f980f 100644 --- a/kitty/keys.py +++ b/kitty/keys.py @@ -138,9 +138,9 @@ def get_localized_key(key, scancode): action_map = { - defines.GLFW_PRESS: b'p', - defines.GLFW_RELEASE: b'r', - defines.GLFW_REPEAT: b't' + defines.GLFW_PRESS: 'p', + defines.GLFW_RELEASE: 'r', + defines.GLFW_REPEAT: 't' }