Remove unused imports

This commit is contained in:
Mitchell Hashimoto
2025-11-27 13:35:56 -08:00
parent d8aeffe1e9
commit dbfc3eb679
150 changed files with 0 additions and 275 deletions

View File

@@ -17,7 +17,6 @@ const builtin = @import("builtin");
const Allocator = std.mem.Allocator;
const macos = @import("macos");
const codes = @import("keycodes.zig").entries;
const Key = @import("key.zig").Key;
const Mods = @import("key.zig").Mods;
/// The current input source that is selected for the keyboard. This can

View File

@@ -1,5 +1,4 @@
const std = @import("std");
const builtin = @import("builtin");
const assert = @import("../quirks.zig").inlineAssert;
const Allocator = std.mem.Allocator;
const Action = @import("Binding.zig").Action;

View File

@@ -1,4 +1,3 @@
const std = @import("std");
const key = @import("key.zig");
/// A single entry in the kitty keymap data. There are only ~100 entries

View File

@@ -1,5 +1,4 @@
const std = @import("std");
const assert = @import("../quirks.zig").inlineAssert;
const Terminal = @import("../terminal/Terminal.zig");
pub const Options = struct {