We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2bb986 commit 57e4c08Copy full SHA for 57e4c08
src/info/filetype.rs
@@ -101,6 +101,7 @@ impl FileColours for FileExtensions {
101
use ansi_term::Colour::*;
102
103
Some(match file {
104
+ f if self.is_temp(f) => Fixed(244).normal(),
105
f if self.is_immediate(f) => Yellow.bold().underline(),
106
f if self.is_image(f) => Fixed(133).normal(),
107
f if self.is_video(f) => Fixed(135).normal(),
@@ -109,7 +110,6 @@ impl FileColours for FileExtensions {
109
110
f if self.is_crypto(f) => Fixed(109).normal(),
111
f if self.is_document(f) => Fixed(105).normal(),
112
f if self.is_compressed(f) => Red.normal(),
- f if self.is_temp(f) => Fixed(244).normal(),
113
f if self.is_compiled(f) => Fixed(137).normal(),
114
_ => return None,
115
})
0 commit comments