this repo has no description
13
fork

Configure Feed

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

window(wrap): fix when we shift to new line

Add a newline at the top of the loop instead of the bottom

+4 -4
+4 -4
src/Window.zig
··· 296 296 col = 0; 297 297 continue; 298 298 } 299 + if (col >= self.width) { 300 + row += 1; 301 + col = 0; 302 + } 299 303 const w = self.gwidth(s); 300 304 if (w == 0) continue; 301 305 if (opts.commit) self.writeCell(col, row, .{ ··· 307 311 .link = segment.link, 308 312 }); 309 313 col += w; 310 - if (col >= self.width) { 311 - row += 1; 312 - col = 0; 313 - } 314 314 } 315 315 } else false; 316 316