Skip to content

Commit 0503e34

Browse files
committed
Second attempt at fixing msys terminal width.
Lock the max width on msys-based terminals to 60. I tried a lot of different things, but I was unable to find a way to detect the correct width in mintty. Unfortunately this means that terminals that work correctly like ConEmu will also be capped at 60. C'est la vie. Of course this does not affect cmd, powershell, etc.
1 parent d98f10a commit 0503e34

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/cargo/core/shell.rs

+10-9
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,7 @@ mod imp {
358358
mod imp {
359359
extern crate winapi;
360360

361-
use std::mem;
362-
use std::ptr;
361+
use std::{cmp, mem, ptr};
363362
use self::winapi::um::fileapi::*;
364363
use self::winapi::um::handleapi::*;
365364
use self::winapi::um::processenv::*;
@@ -395,13 +394,15 @@ mod imp {
395394
CloseHandle(h);
396395
if rc != 0 {
397396
let width = (csbi.srWindow.Right - csbi.srWindow.Left) as usize;
398-
// Some terminals, such as mintty, always return 79 instead of
399-
// the actual width. In that case, use a conservative value.
400-
if width == 79 {
401-
return Some(60);
402-
} else {
403-
return Some(width);
404-
}
397+
// Unfortunately cygwin/mintty does not set the size of the
398+
// backing console to match the actual window size. This
399+
// always reports a size of 80 or 120 (not sure what
400+
// determines that). Use a conservative max of 60 which should
401+
// work in most circumstances. ConEmu does some magic to
402+
// resize the console correctly, but there's no reasonable way
403+
// to detect which kind of terminal we are running in, or if
404+
// GetConsoleScreenBufferInfo returns accurate information.
405+
return Some(cmp::min(60, width));
405406
}
406407
return None;
407408
}

0 commit comments

Comments
 (0)