fill3: Recognize insert key

This commit is contained in:
Andrew Hamilton 2022-01-28 19:40:32 +10:00
parent ec62376f27
commit f58a3d4bb0

View file

@ -23,6 +23,7 @@ CTRL_SPACE = "\x00"
CTRL_UNDERSCORE = "\x1f"
ENTER = "\n"
TAB = "\t"
INSERT = ESC + "[2~"
DELETE = ESC + "[3~"
BACKSPACE = "\x7f"
ALT_BACKSPACE = ESC + BACKSPACE