refactor: run zigimports

closes: #38
This commit is contained in:
CJ van den Berg 2024-09-10 22:24:44 +02:00
parent 8b1a764429
commit bf3fe5f2ba
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
44 changed files with 0 additions and 133 deletions

View file

@ -12,7 +12,6 @@ const EventHandler = @import("../../EventHandler.zig");
const ed = @import("../../editor.zig");
const Allocator = @import("std").mem.Allocator;
const json = @import("std").json;
const eql = @import("std").mem.eql;
const ArrayList = @import("std").ArrayList;
@ -168,8 +167,6 @@ fn insert_bytes(self: *Self, bytes: []const u8) !void {
try self.input.appendSlice(bytes);
}
var find_cmd_id: ?command.ID = null;
fn flush_input(self: *Self) !void {
if (self.input.items.len > 0) {
if (eql(u8, self.input.items, self.last_input.items))