mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-22 20:15:11 +00:00
Merge pull request #300 from chetgurevitch/master
Fix LS_COLORS 01 and 04 detection
This commit is contained in:
commit
6b86cc4615
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user