this repo has no description
13
fork

Configure Feed

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

fix: don't use sixel geometry query yet

This query has a response that interferes with key f4. We need to fix
that parsing before doing sixel queries, and we don't even support
sixels yet.

Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>

+2 -2
-1
src/Window.zig
··· 76 76 /// returns the width of the grapheme. This depends on the terminal capabilities 77 77 pub fn gwidth(self: Window, str: []const u8) usize { 78 78 const m: gw.Method = if (self.screen.unicode) .unicode else .wcwidth; 79 - log.info("using method {any}", .{m}); 80 79 return gw.gwidth(str, m) catch 1; 81 80 } 82 81
+2 -1
src/vaxis.zig
··· 210 210 // parse that 211 211 // that 212 212 // _ = try tty.write(ctlseqs.kitty_graphics_query); 213 - _ = try tty.write(ctlseqs.sixel_geometry_query); 213 + // TODO: sixel geometry query interferes with F4 keys. 214 + // _ = try tty.write(ctlseqs.sixel_geometry_query); 214 215 215 216 // TODO: XTGETTCAP queries ("RGB", "Smulx") 216 217