this repo has no description
13
fork

Configure Feed

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

subscribeToColorSchemeUpdates needs a mutable reference

authored by

Jeffrey C. Ollie and committed by
Tim Culverhouse
2cc1eb77 c89b75eb

+1 -1
+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;