diff --git a/TODO.md b/TODO.md index 37c53e7e2..308985ed2 100644 --- a/TODO.md +++ b/TODO.md @@ -30,4 +30,3 @@ Major Features: * Sixels: https://saitoha.github.io/libsixel/ * Kitty keyboard protocol: https://sw.kovidgoyal.net/kitty/keyboard-protocol/ * Kitty graphics protocol: https://sw.kovidgoyal.net/kitty/graphics-protocol/ -* Colored underlines: https://sw.kovidgoyal.net/kitty/underlines/ diff --git a/src/terminal/stream.zig b/src/terminal/stream.zig index 93f3f5bc8..d681992e5 100644 --- a/src/terminal/stream.zig +++ b/src/terminal/stream.zig @@ -386,7 +386,7 @@ pub fn Stream(comptime Handler: type) type { 'm' => if (@hasDecl(T, "setAttribute")) { var p: sgr.Parser = .{ .params = action.params, .colon = action.sep == .colon }; while (p.next()) |attr| { - log.info("SGR attribute: {}", .{attr}); + // log.info("SGR attribute: {}", .{attr}); try self.handler.setAttribute(attr); } } else log.warn("unimplemented CSI callback: {}", .{action}),