Here, the tests restores the flag not setpull/4/head
parent
0f40fb4845
commit
50ea966dff
2 changed files with 29 additions and 0 deletions
@ -0,0 +1,28 @@ |
||||
#!/bin/sh |
||||
|
||||
# fill space with E |
||||
printf '\033#8' |
||||
# set color |
||||
printf '\033[46;31;3m' |
||||
|
||||
# move to start of line 3 |
||||
printf '\033[3;0H' |
||||
|
||||
# print O |
||||
printf 'O' |
||||
|
||||
# save cursor |
||||
printf '\e7' |
||||
|
||||
# move to end of line 3 |
||||
printf '\033[3;80H' |
||||
|
||||
# print A, that sets "wrapnext" |
||||
printf 'A' |
||||
|
||||
# restore cursor: "wrapnext" should not be set |
||||
printf '\e8' |
||||
|
||||
|
||||
# print K. must be next to 'O' |
||||
printf 'K\n' |
Loading…
Reference in new issue