disable ansi colors for backwards compat

This commit is contained in:
Florent Vilmart 2025-03-21 07:29:55 -04:00
parent ab9c711a5d
commit 4dca69fade

View File

@ -94,7 +94,8 @@ impl Command for Input {
// for now, and backwards compat, we just use the empty
// string
};
let mut line_editor = Reedline::create();
let mut line_editor = Reedline::create().with_ansi_colors(false); // Disable ansi colors for now
// TODO handle options
loop {