Skip to content

Commit

Permalink
Fix LS_COLORS 01 and 04 detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Chet Gurevitch committed Oct 6, 2017
1 parent 4c3fd54 commit afc9657
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/style/lsc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ impl<'var> Pair<'var> {
match num {

// Bold and italic
"1" => style = style.bold(),
"4" => style = style.underline(),
"1" | "01" => style = style.bold(),
"4" | "04" => style = style.underline(),

// Foreground colours
"30" => style = style.fg(Black),
Expand Down

0 comments on commit afc9657

Please sign in to comment.