this repo has no description
13
fork

Configure Feed

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

vxfw: report release and press events with kkp

+6 -1
+6 -1
src/vxfw/App.zig
··· 30 30 return .{ 31 31 .allocator = allocator, 32 32 .tty = try vaxis.Tty.init(), 33 - .vx = try vaxis.init(allocator, .{ .system_clipboard_allocator = allocator }), 33 + .vx = try vaxis.init(allocator, .{ 34 + .system_clipboard_allocator = allocator, 35 + .kitty_keyboard_flags = .{ 36 + .report_events = true, 37 + }, 38 + }), 34 39 .timers = std.ArrayList(vxfw.Tick).init(allocator), 35 40 .wants_focus = null, 36 41 };