summaryrefslogtreecommitdiffstats
path: root/src/libvterm/t/27state_reset.test
blob: 254f994409448067f26cc35ba1cbed1fafffe89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
INIT
WANTSTATE

RESET

!RIS homes cursor
PUSH "\e[5;5H"
  ?cursor = 4,4
WANTSTATE +m
PUSH "\ec"
  ?cursor = 0,0
WANTSTATE -m

!RIS cancels scrolling region
PUSH "\e[5;10r"
WANTSTATE +s
PUSH "\ec\e[25H\n"
  scrollrect 0..25,0..80 => +1,+0
WANTSTATE -s

!RIS erases screen
PUSH "ABCDE"
WANTSTATE +e
PUSH "\ec"
  erase 0..25,0..80
WANTSTATE -e

!RIS clears tabstops
PUSH "\e[5G\eH\e[G\t"
  ?cursor = 0,4
PUSH "\ec\t"
  ?cursor = 0,8