mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
term: make compilable with v2 on windows
This commit is contained in:
parent
ec003ff897
commit
0f1f724a91
@ -22,7 +22,7 @@ fn C.GetConsoleScreenBufferInfo(handle os.HANDLE, info &CONSOLE_SCREEN_BUFFER_IN
|
||||
// get_terminal_size returns a number of colums and rows of terminal window.
|
||||
pub fn get_terminal_size() (int, int) {
|
||||
if is_atty(1) > 0 && os.getenv('TERM') != 'dumb' {
|
||||
info := CONSOLE_SCREEN_BUFFER_INFO{}
|
||||
info := C.CONSOLE_SCREEN_BUFFER_INFO{}
|
||||
|
||||
if C.GetConsoleScreenBufferInfo(C.GetStdHandle(C.STD_OUTPUT_HANDLE), &info) {
|
||||
columns := int(info.srWindow.Right - info.srWindow.Left + 1)
|
||||
|
Loading…
Reference in New Issue
Block a user