this repo has no description
13
fork

Configure Feed

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

widgets(terminal): append last byte to escape seqs

+4 -1
+4 -1
src/widgets/terminal/Parser.zig
··· 81 81 const b = try reader.readByte(); 82 82 switch (b) { 83 83 0x20...0x2F => continue, 84 - else => return .{ .escape = self.buf.items }, 84 + else => { 85 + try self.buf.append(b); 86 + return .{ .escape = self.buf.items }; 87 + }, 85 88 } 86 89 } 87 90 }