1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

term: get_terminal_size()

This commit is contained in:
Mateo Pidal
2020-01-28 01:18:19 -03:00
committed by Alexander Medvednikov
parent 08d3401092
commit 78c96fe989
7 changed files with 50 additions and 18 deletions

View File

@ -95,7 +95,7 @@ pub fn (ts mut TestSession) test() {
}
ts.waitgroup.wait()
ts.benchmark.stop()
eprintln(term.h_divider())
eprintln(term.h_divider('-'))
}
@ -258,7 +258,7 @@ pub fn building_any_v_binaries_failed() bool {
eprintln(bmark.step_message_ok('command: ${cmd}'))
}
bmark.stop()
eprintln(term.h_divider())
eprintln(term.h_divider('-'))
eprintln(bmark.total_message('building v binaries'))
return failed
}