mirror of
https://github.com/nushell/nushell
synced 2024-12-31 23:39:00 +00:00
11 lines
225 B
Rust
11 lines
225 B
Rust
|
#[cfg(windows)]
|
||
|
use nu_utils::utils::enable_vt_processing;
|
||
|
|
||
|
fn main() {
|
||
|
// reset vt processing, aka ansi because illbehaved externals can break it
|
||
|
#[cfg(windows)]
|
||
|
{
|
||
|
let _ = enable_vt_processing();
|
||
|
}
|
||
|
}
|