this repo has no description
56
fork

Configure Feed

Select the types of activity you want to include in your feed.

fmt: add more detail to filetype output

+3
+3
src/main.zig
··· 603 603 fn modeStr(self: Entry) [10]u8 { 604 604 var mode = [_]u8{'-'} ** 10; 605 605 switch (self.kind) { 606 + .block_device => mode[0] = 'b', 607 + .character_device => mode[0] = 'c', 606 608 .directory => mode[0] = 'd', 609 + .named_pipe => mode[0] = 'p', 607 610 .sym_link => mode[0] = 'l', 608 611 else => {}, 609 612 }