Add change_ratio keybind

This commit is contained in:
Ben Buhse 2026-01-30 21:47:16 -06:00
commit 365c000b6e
No known key found for this signature in database
GPG key ID: 7916ACFCD38FD0B4
5 changed files with 49 additions and 16 deletions

View file

@ -108,7 +108,6 @@ pub fn tokenizeToOwnedSlices(input: []const u8, delimiter: u8) ![]const []const
while (it.next()) |part| {
const duped = try allocator.dupe(u8, part);
try list.append(utils.allocator, duped);
log.debug("{s}", .{duped});
}
return list.toOwnedSlice(utils.allocator);
}