plumb CSI to set cursor style, but haven't implemented any styles

This commit is contained in:
Mitchell Hashimoto
2022-05-19 21:43:30 -07:00
parent 16d4648cf6
commit 37f621bc19
4 changed files with 39 additions and 0 deletions

View File

@@ -669,3 +669,14 @@ pub fn deviceStatusReport(
else => log.warn("unimplemented device status req: {}", .{req}),
}
}
pub fn setCursorStyle(
self: *Window,
style: terminal.CursorStyle,
) !void {
_ = self;
switch (style) {
else => log.warn("unimplemented cursor style: {}", .{style}),
}
}