From 7f0273c347f287a1c0a02e948f2477a8fdc30a9b Mon Sep 17 00:00:00 2001 From: Andrew Gallant <jamslam@gmail.com> Date: Mon, 5 Sep 2016 21:19:56 -0400 Subject: [PATCH] Fix yellow color to match ack. --- src/printer.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/printer.rs b/src/printer.rs index 61470866..cc296f8d 100644 --- a/src/printer.rs +++ b/src/printer.rs @@ -239,6 +239,7 @@ impl<W: Send + io::Write> Printer<W> { fn line_number(&mut self, n: u64, sep: u8) { if self.wtr.is_color() { let _ = self.wtr.fg(YELLOW); + let _ = self.wtr.attr(term::Attr::Bold); } self.write(n.to_string().as_bytes()); if self.wtr.is_color() {