finalize comments

This commit is contained in:
Mitchell Hashimoto
2023-06-20 09:40:50 -07:00
parent 1c2451b532
commit 86705a181a
2 changed files with 1 additions and 2 deletions

View File

@ -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/

View File

@ -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}),