Skip to content

Commit

Permalink
Double instead of single-quotes to match the rest of the file.
Browse files Browse the repository at this point in the history
  • Loading branch information
dejlek committed Aug 12, 2024
1 parent ec49835 commit a7724a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tui_editor/tty_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

0 comments on commit a7724a4

Please sign in to comment.