Add check for non-terminal/tty handle

This commit is contained in:
Domenico Mastrangelo 2024-06-01 22:49:24 +02:00
parent 5727ccb928
commit 1eec98b070
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
use std::fmt;
use std::io;
use std::io::IsTerminal;
use std::vec::Vec;
use nu_ansi_term::Color::{Fixed, Green, Red, Yellow};
@ -164,7 +165,8 @@ impl<'a> Printer for SimplePrinter<'a> {
} else {
match handle {
OutputHandle::IoWrite(handle) => {
if self.config.style_components.numbers() {
if self.config.style_components.numbers() && !std::io::stdout().is_terminal()
{
handle.write_all(
format!("{line_number:4} {}", String::from_utf8_lossy(line_buffer))
.as_bytes(),

View File

@ -1779,7 +1779,7 @@ fn file_with_invalid_utf8_filename() {
.arg(file_path.as_os_str())
.assert()
.success()
.stdout(" 1 dummy content\n");
.stdout("dummy content\n");
}
#[test]