this repo has no description
13
fork

Configure Feed

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

log: prefix all log scopes with "vaxis"

+12 -16
-2
src/Image.zig
··· 6 6 7 7 const Window = @import("Window.zig"); 8 8 9 - const log = std.log.scoped(.image); 10 - 11 9 const Image = @This(); 12 10 13 11 const transmit_opener = "\x1b_Gf=32,i={d},s={d},v={d},m={d};";
+1 -1
src/InternalScreen.zig
··· 5 5 const MouseShape = @import("Mouse.zig").Shape; 6 6 const CursorShape = Cell.CursorShape; 7 7 8 - const log = std.log.scoped(.internal_screen); 8 + const log = std.log.scoped(.vaxis); 9 9 10 10 const InternalScreen = @This(); 11 11
+4 -2
src/Loop.zig
··· 6 6 const GraphemeCache = @import("GraphemeCache.zig"); 7 7 const Parser = @import("Parser.zig"); 8 8 const Queue = @import("queue.zig").Queue; 9 - const Tty = @import("main.zig").Tty; 9 + const vaxis = @import("main.zig"); 10 + const Tty = vaxis.Tty; 10 11 const Vaxis = @import("Vaxis.zig"); 11 - const log = std.log.scoped(.loop); 12 + 13 + const log = std.log.scoped(.vaxis); 12 14 13 15 pub fn Loop(comptime T: type) type { 14 16 return struct {
+1 -1
src/Parser.zig
··· 8 8 const grapheme = @import("grapheme"); 9 9 const Winsize = @import("main.zig").Winsize; 10 10 11 - const log = std.log.scoped(.parser); 11 + const log = std.log.scoped(.vaxis_parser); 12 12 13 13 const Parser = @This(); 14 14
-2
src/Screen.zig
··· 8 8 const Unicode = @import("Unicode.zig"); 9 9 const Method = @import("gwidth.zig").Method; 10 10 11 - const log = std.log.scoped(.screen); 12 - 13 11 const Screen = @This(); 14 12 15 13 width: usize = 0,
-2
src/Window.zig
··· 7 7 const Unicode = @import("Unicode.zig"); 8 8 const gw = @import("gwidth.zig"); 9 9 10 - const log = std.log.scoped(.window); 11 - 12 10 const Window = @This(); 13 11 14 12 pub const Size = union(enum) {
+4
src/main.zig
··· 64 64 std.builtin.default_panic(msg, error_return_trace, ret_addr); 65 65 } 66 66 67 + pub const log_scopes = enum { 68 + vaxis, 69 + }; 70 + 67 71 /// the vaxis logo. In PixelCode 68 72 pub const logo = 69 73 \\▄ ▄ ▄▄▄ ▄ ▄ ▄▄▄ ▄▄▄
-2
src/queue.zig
··· 3 3 const atomic = std.atomic; 4 4 const Condition = std.Thread.Condition; 5 5 6 - const log = std.log.scoped(.queue); 7 - 8 6 /// Thread safe. Fixed size. Blocking push and pop. 9 7 pub fn Queue( 10 8 comptime T: type,
-2
src/widgets/TextInput.zig
··· 6 6 const GapBuffer = @import("gap_buffer").GapBuffer; 7 7 const Unicode = @import("../Unicode.zig"); 8 8 9 - const log = std.log.scoped(.text_input); 10 - 11 9 const TextInput = @This(); 12 10 13 11 /// The events that this widget handles
+1 -1
src/widgets/terminal/Screen.zig
··· 4 4 5 5 const ansi = @import("ansi.zig"); 6 6 7 - const log = std.log.scoped(.terminal); 7 + const log = std.log.scoped(.vaxis_terminal); 8 8 9 9 const Screen = @This(); 10 10
+1 -1
src/xev.zig
··· 9 9 const Mouse = @import("Mouse.zig"); 10 10 const Color = @import("Cell.zig").Color; 11 11 12 - const log = std.log.scoped(.tty_watcher); 12 + const log = std.log.scoped(.vaxis_xev); 13 13 14 14 pub const Event = union(enum) { 15 15 key_press: Key,