From a7724a41a68e970826ec775239fbf904977160c7 Mon Sep 17 00:00:00 2001 From: Dejan Lekic Date: Mon, 12 Aug 2024 17:50:54 +0100 Subject: [PATCH] Double instead of single-quotes to match the rest of the file. --- tui_editor/tty_helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tui_editor/tty_helpers.py b/tui_editor/tty_helpers.py index f6176bf..8bd748f 100644 --- a/tui_editor/tty_helpers.py +++ b/tui_editor/tty_helpers.py @@ -177,6 +177,6 @@ def update_occupied_space(self): b"\x7f": KEY_BACKSPACE, b"\x1b[3~": KEY_DELETE, # xterm specific keymap entries - b'\x1b[F': KEY_END, - b'\x1b[H': KEY_HOME, + b"\x1b[F": KEY_END, + b"\x1b[H": KEY_HOME, }