mirror of
				https://github.com/sharkdp/bat.git
				synced 2025-11-04 00:51:56 +00:00 
			
		
		
		
	print additional newline if last line in input file was not terminated with a newline (fixes #299)
This commit is contained in:
		@@ -243,6 +243,10 @@ impl<'a> Printer for InteractivePrinter<'a> {
 | 
			
		||||
                    )).collect::<Vec<_>>()
 | 
			
		||||
                    .join("")
 | 
			
		||||
            )?;
 | 
			
		||||
 | 
			
		||||
            if line.bytes().next_back() != Some(b'\n') {
 | 
			
		||||
                write!(handle, "\n")?;
 | 
			
		||||
            }
 | 
			
		||||
        } else {
 | 
			
		||||
            for &(style, region) in regions.iter() {
 | 
			
		||||
                let mut ansi_iterator = AnsiCodeIterator::new(region);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user