nu-utils 0.112.1

Nushell utility functions
Documentation
1
2
3
4
5
6
7
8
9
10
#[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();
    }
}