+1
-1
src/Vaxis.zig
+1
-1
src/Vaxis.zig
···
953
953
/// capability. Support can be detected by checking the value of
954
954
/// vaxis.caps.color_scheme_updates. The initial scheme will be reported when
955
955
/// subscribing.
956
-
pub fn subscribeToColorSchemeUpdates(self: Vaxis, tty: AnyWriter) !void {
956
+
pub fn subscribeToColorSchemeUpdates(self: *Vaxis, tty: AnyWriter) !void {
957
957
try tty.writeAll(ctlseqs.color_scheme_request);
958
958
try tty.writeAll(ctlseqs.color_scheme_set);
959
959
self.state.color_scheme_updates = true;