this repo has no description
13
fork

Configure Feed

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

screen: return all cell fields in readCell

+8 -2
+8 -2
src/InternalScreen.zig
··· 116 116 } 117 117 const i = (row * self.width) + col; 118 118 assert(i < self.buf.len); 119 + const cell = self.buf[i]; 119 120 return .{ 120 - .char = .{ .grapheme = self.buf[i].char.items }, 121 - .style = self.buf[i].style, 121 + .char = .{ .grapheme = cell.char.items }, 122 + .style = cell.style, 123 + .link = .{ 124 + .uri = cell.uri.items, 125 + .params = cell.uri_id.items, 126 + }, 127 + .default = cell.default, 122 128 }; 123 129 }