tests: works better with the file being committed xD

This commit is contained in:
Boris Faure 2019-10-27 16:21:03 +01:00
parent e197c04f65
commit 6148707ee7
1 changed files with 33 additions and 0 deletions

33
tests/selection_with_tabs.sh Executable file
View File

@ -0,0 +1,33 @@
#!/bin/sh
# char width: 7
# char height: 15
# clear screen
printf '\033[2J'
# set color
printf '\033[46;31;3m'
# move to 2; 2
printf '\033[2;2H'
# Set string to select
printf 'a\011b\011'
# mouse down to start selection
printf '\033}td;0;24;1;0;0\0'
# mouse move
printf '\033}tm;78;24\0'
# mouse up
printf '\033}tu;78;24;1;0;0\0'
# force render
printf '\033}tr\0'
# selection is 'EEEEE'
printf '\033}ts a\011b\n\0'