fill3: Add delete key.

This commit is contained in:
Andrew Hamilton 2022-01-07 09:23:03 +10:00
parent f952c55b7d
commit dd335b2213

View file

@ -21,6 +21,7 @@ CTRL_LEFT = ESC + "[1;5D"
CTRL_RIGHT = ESC + "[1;5C"
CTRL_SPACE = "\x00"
ENTER = "\n"
DELETE = "[3~"
BACKSPACE = "\x7f"
ALT_BACKSPACE = ESC + BACKSPACE
ALT_CARROT = ESC + "^"