fix(cli): enable VT processing on Windows Console Host (#9248)

Signed-off-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Douwe Osinga
2026-05-17 21:30:38 -04:00
committed by GitHub
parent 027137ce59
commit 565c0e5773
+16
View File
@@ -1,6 +1,19 @@
use anyhow::Result;
use goose_cli::cli::cli;
/// Enable ANSI/VT escape sequence processing on Windows Console Host.
///
/// Without this, spinners and progress bars from cliclack/indicatif render as
/// repeated new lines instead of updating in place, because Windows Console Host
/// does not process ANSI escapes by default.
#[cfg(windows)]
fn enable_windows_vt_processing() {
// colors_supported() has the side effect of calling SetConsoleMode with
// ENABLE_VIRTUAL_TERMINAL_PROCESSING on the underlying console handle.
let _ = console::Term::stdout().features().colors_supported();
let _ = console::Term::stderr().features().colors_supported();
}
async fn run() -> Result<()> {
if let Err(e) = goose_cli::logging::setup_logging(None) {
eprintln!("Warning: Failed to initialize logging: {}", e);
@@ -18,6 +31,9 @@ async fn run() -> Result<()> {
}
fn main() -> Result<()> {
#[cfg(windows)]
enable_windows_vt_processing();
let handle = std::thread::Builder::new()
.name("goose-cli-main".to_string())
.stack_size(8 * 1024 * 1024)