this repo has no description
3
fork

Configure Feed

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

fmt

+4 -16
+4 -16
src/app.zig
··· 123 123 try lua.init(self); 124 124 125 125 try self.binds.append(.{ 126 - .key = .{ 127 - .codepoint = 'c', 128 - .mods = .{ .ctrl = true }, 129 - }, 126 + .key = .{ .codepoint = 'c', .mods = .{ .ctrl = true } }, 130 127 .command = .quit, 131 128 }); 132 129 try self.binds.append(.{ 133 - .key = .{ 134 - .codepoint = vaxis.Key.up, 135 - .mods = .{ .alt = true }, 136 - }, 130 + .key = .{ .codepoint = vaxis.Key.up, .mods = .{ .alt = true } }, 137 131 .command = .@"prev-channel", 138 132 }); 139 133 try self.binds.append(.{ 140 - .key = .{ 141 - .codepoint = vaxis.Key.down, 142 - .mods = .{ .alt = true }, 143 - }, 134 + .key = .{ .codepoint = vaxis.Key.down, .mods = .{ .alt = true } }, 144 135 .command = .@"next-channel", 145 136 }); 146 137 try self.binds.append(.{ 147 - .key = .{ 148 - .codepoint = 'l', 149 - .mods = .{ .ctrl = true }, 150 - }, 138 + .key = .{ .codepoint = 'l', .mods = .{ .ctrl = true } }, 151 139 .command = .redraw, 152 140 }); 153 141