Removed unused junk from the terminfo file

This commit is contained in:
Kovid Goyal
2016-10-21 08:30:18 +05:30
parent b8df0e3382
commit 86789c5d84
5 changed files with 21 additions and 18 deletions

View File

@@ -39,10 +39,10 @@ DECSC = b"7"
#: selection. If none were saved, move cursor to home position.
DECRC = b"8"
#: Set numeric keypad mode
#: Set normal keypad mode
DECPNM = b'>'
#: Set application keypad mode
#: Set alternate keypad mode
DECPAM = b'='
# "Sharp" escape sequences.

View File

@@ -82,8 +82,8 @@ class Stream(object):
esc.HTS: "set_tab_stop",
esc.DECSC: "save_cursor",
esc.DECRC: "restore_cursor",
esc.DECPNM: 'numeric_keypad_mode',
esc.DECPAM: 'application_keypad_mode',
esc.DECPNM: 'normal_keypad_mode',
esc.DECPAM: 'alternate_keypad_mode',
}
#: "sharp" escape sequences -- ``ESC # <N>``.