This commit is contained in:
Kovid Goyal
2018-11-19 09:35:46 +05:30
parent 6f0a59c696
commit c02fa79591
2 changed files with 8 additions and 0 deletions

View File

@@ -171,6 +171,11 @@ class TestParser(BaseTest):
self.assertTrue(s.cursor.blink)
self.ae(s.cursor.shape, CURSOR_BLOCK)
s.reset()
pb('\033[3 @', ('Shift left escape code not implemented',))
pb('\033[3 A', ('Shift right escape code not implemented',))
pb('\033[3;4 S', ('Select presentation directions escape code not implemented',))
def test_osc_codes(self):
s = self.create_screen()
pb = partial(self.parse_bytes_dump, s)