We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 69827e0 + dd9dfff commit 404ed20Copy full SHA for 404ed20
src/output/grid.rs
@@ -63,6 +63,9 @@ impl<'a> Render<'a> {
63
// This isn’t *quite* the same as the lines view, which also
64
// displays full link paths.
65
for file in &self.files {
66
+ if self.opts.icons {
67
+ write!(w, "{}", painted_icon(&file, &self.style))?;
68
+ }
69
let name_cell = self.style.for_file(file, self.colours).paint();
70
writeln!(w, "{}", name_cell.strings())?;
71
}
0 commit comments