Remove unused imports (#9736)
Done with AI: https://ampcode.com/threads/T-07890fd7-5d5c-462a-8d50-ba7ac6565796 I'm reviewing it now, but if builds pass we're probably fine.pull/9742/head
commit
199119967b
|
|
@ -7,19 +7,14 @@ const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const assert = @import("quirks.zig").inlineAssert;
|
const assert = @import("quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const build_config = @import("build_config.zig");
|
|
||||||
const apprt = @import("apprt.zig");
|
const apprt = @import("apprt.zig");
|
||||||
const Surface = @import("Surface.zig");
|
const Surface = @import("Surface.zig");
|
||||||
const tracy = @import("tracy");
|
|
||||||
const input = @import("input.zig");
|
const input = @import("input.zig");
|
||||||
const configpkg = @import("config.zig");
|
const configpkg = @import("config.zig");
|
||||||
const Config = configpkg.Config;
|
const Config = configpkg.Config;
|
||||||
const BlockingQueue = @import("datastruct/main.zig").BlockingQueue;
|
const BlockingQueue = @import("datastruct/main.zig").BlockingQueue;
|
||||||
const renderer = @import("renderer.zig");
|
const renderer = @import("renderer.zig");
|
||||||
const font = @import("font/main.zig");
|
const font = @import("font/main.zig");
|
||||||
const internal_os = @import("os/main.zig");
|
|
||||||
const macos = @import("macos");
|
|
||||||
const objc = @import("objc");
|
|
||||||
|
|
||||||
const log = std.log.scoped(.app);
|
const log = std.log.scoped(.app);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,9 +26,6 @@ const crash = @import("crash/main.zig");
|
||||||
const unicode = @import("unicode/main.zig");
|
const unicode = @import("unicode/main.zig");
|
||||||
const rendererpkg = @import("renderer.zig");
|
const rendererpkg = @import("renderer.zig");
|
||||||
const termio = @import("termio.zig");
|
const termio = @import("termio.zig");
|
||||||
const objc = @import("objc");
|
|
||||||
const imgui = @import("imgui");
|
|
||||||
const Pty = @import("pty.zig").Pty;
|
|
||||||
const font = @import("font/main.zig");
|
const font = @import("font/main.zig");
|
||||||
const Command = @import("Command.zig");
|
const Command = @import("Command.zig");
|
||||||
const terminal = @import("terminal/main.zig");
|
const terminal = @import("terminal/main.zig");
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,6 @@
|
||||||
//! The goal is to have different implementations share as much of the core
|
//! The goal is to have different implementations share as much of the core
|
||||||
//! logic as possible, and to only reach out to platform-specific implementation
|
//! logic as possible, and to only reach out to platform-specific implementation
|
||||||
//! code when absolutely necessary.
|
//! code when absolutely necessary.
|
||||||
const std = @import("std");
|
|
||||||
const builtin = @import("builtin");
|
|
||||||
const build_config = @import("build_config.zig");
|
const build_config = @import("build_config.zig");
|
||||||
|
|
||||||
const structs = @import("apprt/structs.zig");
|
const structs = @import("apprt/structs.zig");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
const internal_os = @import("../os/main.zig");
|
|
||||||
|
|
||||||
// The required comptime API for any apprt.
|
// The required comptime API for any apprt.
|
||||||
pub const App = @import("gtk/App.zig");
|
pub const App = @import("gtk/App.zig");
|
||||||
pub const Surface = @import("gtk/Surface.zig");
|
pub const Surface = @import("gtk/Surface.zig");
|
||||||
|
|
|
||||||
|
|
@ -5,18 +5,13 @@ const App = @This();
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const adw = @import("adw");
|
|
||||||
const gio = @import("gio");
|
|
||||||
const apprt = @import("../../apprt.zig");
|
const apprt = @import("../../apprt.zig");
|
||||||
const configpkg = @import("../../config.zig");
|
const configpkg = @import("../../config.zig");
|
||||||
const internal_os = @import("../../os/main.zig");
|
|
||||||
const Config = configpkg.Config;
|
const Config = configpkg.Config;
|
||||||
const CoreApp = @import("../../App.zig");
|
const CoreApp = @import("../../App.zig");
|
||||||
|
|
||||||
const Application = @import("class/application.zig").Application;
|
const Application = @import("class/application.zig").Application;
|
||||||
const Surface = @import("Surface.zig");
|
const Surface = @import("Surface.zig");
|
||||||
const gtk_version = @import("gtk_version.zig");
|
|
||||||
const adw_version = @import("adw_version.zig");
|
|
||||||
const ipcNewWindow = @import("ipc/new_window.zig").newWindow;
|
const ipcNewWindow = @import("ipc/new_window.zig").newWindow;
|
||||||
|
|
||||||
const log = std.log.scoped(.gtk);
|
const log = std.log.scoped(.gtk);
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,11 @@
|
||||||
/// Contains all the logic for putting the Ghostty process and
|
/// Contains all the logic for putting the Ghostty process and
|
||||||
/// each individual surface into its own cgroup.
|
/// each individual surface into its own cgroup.
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
const gio = @import("gio");
|
const gio = @import("gio");
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
|
||||||
|
|
||||||
const App = @import("App.zig");
|
|
||||||
const internal_os = @import("../../os/main.zig");
|
const internal_os = @import("../../os/main.zig");
|
||||||
|
|
||||||
const log = std.log.scoped(.gtk_systemd_cgroup);
|
const log = std.log.scoped(.gtk_systemd_cgroup);
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
const assert = @import("../../../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const builtin = @import("builtin");
|
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
const gdk = @import("gdk");
|
const gdk = @import("gdk");
|
||||||
const gio = @import("gio");
|
const gio = @import("gio");
|
||||||
|
|
@ -9,7 +8,6 @@ const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const build_config = @import("../../../build_config.zig");
|
|
||||||
const i18n = @import("../../../os/main.zig").i18n;
|
const i18n = @import("../../../os/main.zig").i18n;
|
||||||
const apprt = @import("../../../apprt.zig");
|
const apprt = @import("../../../apprt.zig");
|
||||||
const cgroup = @import("../cgroup.zig");
|
const cgroup = @import("../cgroup.zig");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,10 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const adw = @import("adw");
|
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const gresource = @import("../build/gresource.zig");
|
const gresource = @import("../build/gresource.zig");
|
||||||
const i18n = @import("../../../os/main.zig").i18n;
|
const i18n = @import("../../../os/main.zig").i18n;
|
||||||
const adw_version = @import("../adw_version.zig");
|
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
const Config = @import("config.zig").Config;
|
|
||||||
const Dialog = @import("dialog.zig").Dialog;
|
const Dialog = @import("dialog.zig").Dialog;
|
||||||
|
|
||||||
const log = std.log.scoped(.gtk_ghostty_close_confirmation_dialog);
|
const log = std.log.scoped(.gtk_ghostty_close_confirmation_dialog);
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const adw = @import("adw");
|
|
||||||
const glib = @import("glib");
|
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const adw = @import("adw");
|
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const gresource = @import("../build/gresource.zig");
|
const gresource = @import("../build/gresource.zig");
|
||||||
const adw_version = @import("../adw_version.zig");
|
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
const Config = @import("config.zig").Config;
|
const Config = @import("config.zig").Config;
|
||||||
const Dialog = @import("dialog.zig").Dialog;
|
const Dialog = @import("dialog.zig").Dialog;
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
const std = @import("std");
|
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const build_config = @import("../../../build_config.zig");
|
|
||||||
const adw_version = @import("../adw_version.zig");
|
const adw_version = @import("../adw_version.zig");
|
||||||
const gresource = @import("../build/gresource.zig");
|
const gresource = @import("../build/gresource.zig");
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,8 @@ const adw = @import("adw");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const gresource = @import("../build/gresource.zig");
|
|
||||||
const adw_version = @import("../adw_version.zig");
|
const adw_version = @import("../adw_version.zig");
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
const Config = @import("config.zig").Config;
|
|
||||||
|
|
||||||
const log = std.log.scoped(.gtk_ghostty_dialog);
|
const log = std.log.scoped(.gtk_ghostty_dialog);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,11 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
const assert = @import("../../../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const adw = @import("adw");
|
|
||||||
const gio = @import("gio");
|
const gio = @import("gio");
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
|
||||||
|
|
||||||
const Binding = @import("../../../input.zig").Binding;
|
const Binding = @import("../../../input.zig").Binding;
|
||||||
const gresource = @import("../build/gresource.zig");
|
|
||||||
const key = @import("../key.zig");
|
const key = @import("../key.zig");
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
const Application = @import("application.zig").Application;
|
const Application = @import("application.zig").Application;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
||||||
const adw = @import("adw");
|
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,15 +2,12 @@ const std = @import("std");
|
||||||
const build_config = @import("../../../build_config.zig");
|
const build_config = @import("../../../build_config.zig");
|
||||||
|
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
const gdk = @import("gdk");
|
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const gresource = @import("../build/gresource.zig");
|
const gresource = @import("../build/gresource.zig");
|
||||||
|
|
||||||
const key = @import("../key.zig");
|
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
const Application = @import("application.zig").Application;
|
|
||||||
const Surface = @import("surface.zig").Surface;
|
const Surface = @import("surface.zig").Surface;
|
||||||
const DebugWarning = @import("debug_warning.zig").DebugWarning;
|
const DebugWarning = @import("debug_warning.zig").DebugWarning;
|
||||||
const InspectorWidget = @import("inspector_widget.zig").InspectorWidget;
|
const InspectorWidget = @import("inspector_widget.zig").InspectorWidget;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const build_config = @import("../../../build_config.zig");
|
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
const assert = @import("../../../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
|
|
@ -8,17 +7,11 @@ const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const i18n = @import("../../../os/main.zig").i18n;
|
|
||||||
const apprt = @import("../../../apprt.zig");
|
const apprt = @import("../../../apprt.zig");
|
||||||
const input = @import("../../../input.zig");
|
|
||||||
const CoreSurface = @import("../../../Surface.zig");
|
|
||||||
const gtk_version = @import("../gtk_version.zig");
|
|
||||||
const adw_version = @import("../adw_version.zig");
|
|
||||||
const ext = @import("../ext.zig");
|
const ext = @import("../ext.zig");
|
||||||
const gresource = @import("../build/gresource.zig");
|
const gresource = @import("../build/gresource.zig");
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
const WeakRef = @import("../weak_ref.zig").WeakRef;
|
const WeakRef = @import("../weak_ref.zig").WeakRef;
|
||||||
const Config = @import("config.zig").Config;
|
|
||||||
const Application = @import("application.zig").Application;
|
const Application = @import("application.zig").Application;
|
||||||
const CloseConfirmationDialog = @import("close_confirmation_dialog.zig").CloseConfirmationDialog;
|
const CloseConfirmationDialog = @import("close_confirmation_dialog.zig").CloseConfirmationDialog;
|
||||||
const Surface = @import("surface.zig").Surface;
|
const Surface = @import("surface.zig").Surface;
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ const terminal = @import("../../../terminal/main.zig");
|
||||||
const CoreSurface = @import("../../../Surface.zig");
|
const CoreSurface = @import("../../../Surface.zig");
|
||||||
const gresource = @import("../build/gresource.zig");
|
const gresource = @import("../build/gresource.zig");
|
||||||
const ext = @import("../ext.zig");
|
const ext = @import("../ext.zig");
|
||||||
const adw_version = @import("../adw_version.zig");
|
|
||||||
const gtk_key = @import("../key.zig");
|
const gtk_key = @import("../key.zig");
|
||||||
const ApprtSurface = @import("../Surface.zig");
|
const ApprtSurface = @import("../Surface.zig");
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
|
|
@ -30,7 +29,6 @@ const ChildExited = @import("surface_child_exited.zig").SurfaceChildExited;
|
||||||
const ClipboardConfirmationDialog = @import("clipboard_confirmation_dialog.zig").ClipboardConfirmationDialog;
|
const ClipboardConfirmationDialog = @import("clipboard_confirmation_dialog.zig").ClipboardConfirmationDialog;
|
||||||
const TitleDialog = @import("surface_title_dialog.zig").SurfaceTitleDialog;
|
const TitleDialog = @import("surface_title_dialog.zig").SurfaceTitleDialog;
|
||||||
const Window = @import("window.zig").Window;
|
const Window = @import("window.zig").Window;
|
||||||
const WeakRef = @import("../weak_ref.zig").WeakRef;
|
|
||||||
const InspectorWindow = @import("inspector_window.zig").InspectorWindow;
|
const InspectorWindow = @import("inspector_window.zig").InspectorWindow;
|
||||||
const i18n = @import("../../../os/i18n.zig");
|
const i18n = @import("../../../os/i18n.zig");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const gresource = @import("../build/gresource.zig");
|
const gresource = @import("../build/gresource.zig");
|
||||||
const adw_version = @import("../adw_version.zig");
|
|
||||||
const ext = @import("../ext.zig");
|
const ext = @import("../ext.zig");
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,13 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const build_config = @import("../../../build_config.zig");
|
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const adw = @import("adw");
|
const adw = @import("adw");
|
||||||
const gio = @import("gio");
|
const gio = @import("gio");
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
||||||
const i18n = @import("../../../os/main.zig").i18n;
|
|
||||||
const apprt = @import("../../../apprt.zig");
|
const apprt = @import("../../../apprt.zig");
|
||||||
const input = @import("../../../input.zig");
|
|
||||||
const CoreSurface = @import("../../../Surface.zig");
|
const CoreSurface = @import("../../../Surface.zig");
|
||||||
const ext = @import("../ext.zig");
|
const ext = @import("../ext.zig");
|
||||||
const gtk_version = @import("../gtk_version.zig");
|
|
||||||
const adw_version = @import("../adw_version.zig");
|
|
||||||
const gresource = @import("../build/gresource.zig");
|
const gresource = @import("../build/gresource.zig");
|
||||||
const Common = @import("../class.zig").Common;
|
const Common = @import("../class.zig").Common;
|
||||||
const Config = @import("config.zig").Config;
|
const Config = @import("config.zig").Config;
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@ const Surface = @import("surface.zig").Surface;
|
||||||
const Tab = @import("tab.zig").Tab;
|
const Tab = @import("tab.zig").Tab;
|
||||||
const DebugWarning = @import("debug_warning.zig").DebugWarning;
|
const DebugWarning = @import("debug_warning.zig").DebugWarning;
|
||||||
const CommandPalette = @import("command_palette.zig").CommandPalette;
|
const CommandPalette = @import("command_palette.zig").CommandPalette;
|
||||||
const InspectorWindow = @import("inspector_window.zig").InspectorWindow;
|
|
||||||
const WeakRef = @import("../weak_ref.zig").WeakRef;
|
const WeakRef = @import("../weak_ref.zig").WeakRef;
|
||||||
|
|
||||||
const log = std.log.scoped(.gtk_ghostty_window);
|
const log = std.log.scoped(.gtk_ghostty_window);
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
const assert = @import("../../quirks.zig").inlineAssert;
|
||||||
const testing = std.testing;
|
const testing = std.testing;
|
||||||
|
|
||||||
const gio = @import("gio");
|
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
const gobject = @import("gobject");
|
const gobject = @import("gobject");
|
||||||
const gtk = @import("gtk");
|
const gtk = @import("gtk");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const build_options = @import("build_options");
|
|
||||||
|
|
||||||
const gdk = @import("gdk");
|
const gdk = @import("gdk");
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
//! Wayland protocol implementation for the Ghostty GTK apprt.
|
//! Wayland protocol implementation for the Ghostty GTK apprt.
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const build_options = @import("build_options");
|
|
||||||
|
|
||||||
const gdk = @import("gdk");
|
const gdk = @import("gdk");
|
||||||
const gdk_wayland = @import("gdk_wayland");
|
const gdk_wayland = @import("gdk_wayland");
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
//! X11 window protocol implementation for the Ghostty GTK apprt.
|
//! X11 window protocol implementation for the Ghostty GTK apprt.
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const build_options = @import("build_options");
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
const adw = @import("adw");
|
|
||||||
const gdk = @import("gdk");
|
const gdk = @import("gdk");
|
||||||
const gdk_x11 = @import("gdk_x11");
|
const gdk_x11 = @import("gdk_x11");
|
||||||
const glib = @import("glib");
|
const glib = @import("glib");
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
const IsSymbol = @This();
|
const IsSymbol = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const assert = std.debug.assert;
|
const assert = std.debug.assert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const Benchmark = @import("Benchmark.zig");
|
const Benchmark = @import("Benchmark.zig");
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
const GhosttyBench = @This();
|
const GhosttyBench = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Config = @import("Config.zig");
|
|
||||||
const SharedDeps = @import("SharedDeps.zig");
|
const SharedDeps = @import("SharedDeps.zig");
|
||||||
|
|
||||||
steps: []*std.Build.Step.Compile,
|
steps: []*std.Build.Step.Compile,
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,6 @@
|
||||||
const GhosttyFrameData = @This();
|
const GhosttyFrameData = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Config = @import("Config.zig");
|
|
||||||
const SharedDeps = @import("SharedDeps.zig");
|
|
||||||
const DistResource = @import("GhosttyDist.zig").Resource;
|
const DistResource = @import("GhosttyDist.zig").Resource;
|
||||||
|
|
||||||
/// The output path for the compressed framedata zig file
|
/// The output path for the compressed framedata zig file
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,7 @@ const GhosttyLibVt = @This();
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = std.debug.assert;
|
const assert = std.debug.assert;
|
||||||
const RunStep = std.Build.Step.Run;
|
const RunStep = std.Build.Step.Run;
|
||||||
const Config = @import("Config.zig");
|
|
||||||
const GhosttyZig = @import("GhosttyZig.zig");
|
const GhosttyZig = @import("GhosttyZig.zig");
|
||||||
const SharedDeps = @import("SharedDeps.zig");
|
|
||||||
const LibtoolStep = @import("LibtoolStep.zig");
|
|
||||||
const LipoStep = @import("LipoStep.zig");
|
|
||||||
|
|
||||||
/// The step that generates the file.
|
/// The step that generates the file.
|
||||||
step: *std.Build.Step,
|
step: *std.Build.Step,
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
const GhosttyResources = @This();
|
const GhosttyResources = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const assert = std.debug.assert;
|
const assert = std.debug.assert;
|
||||||
const buildpkg = @import("main.zig");
|
|
||||||
const Config = @import("Config.zig");
|
const Config = @import("Config.zig");
|
||||||
const RunStep = std.Build.Step.Run;
|
const RunStep = std.Build.Step.Run;
|
||||||
const SharedDeps = @import("SharedDeps.zig");
|
const SharedDeps = @import("SharedDeps.zig");
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
const GhosttyWebdata = @This();
|
const GhosttyWebdata = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Config = @import("Config.zig");
|
|
||||||
const SharedDeps = @import("SharedDeps.zig");
|
const SharedDeps = @import("SharedDeps.zig");
|
||||||
|
|
||||||
steps: []*std.Build.Step,
|
steps: []*std.Build.Step,
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
const UnicodeTables = @This();
|
const UnicodeTables = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Config = @import("Config.zig");
|
|
||||||
|
|
||||||
/// The exe.
|
/// The exe.
|
||||||
props_exe: *std.Build.Step.Compile,
|
props_exe: *std.Build.Step.Compile,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const help_strings = @import("help_strings");
|
|
||||||
const helpgen_actions = @import("../../input/helpgen_actions.zig");
|
const helpgen_actions = @import("../../input/helpgen_actions.zig");
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ const assert = std.debug.assert;
|
||||||
const apprt = @import("apprt.zig");
|
const apprt = @import("apprt.zig");
|
||||||
const font = @import("font/main.zig");
|
const font = @import("font/main.zig");
|
||||||
const rendererpkg = @import("renderer.zig");
|
const rendererpkg = @import("renderer.zig");
|
||||||
const WasmTarget = @import("os/wasm/target.zig").Target;
|
|
||||||
const BuildConfig = @import("build/Config.zig");
|
const BuildConfig = @import("build/Config.zig");
|
||||||
|
|
||||||
pub const ReleaseChannel = BuildConfig.ReleaseChannel;
|
pub const ReleaseChannel = BuildConfig.ReleaseChannel;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ const builtin = @import("builtin");
|
||||||
const args = @import("args.zig");
|
const args = @import("args.zig");
|
||||||
const Action = @import("ghostty.zig").Action;
|
const Action = @import("ghostty.zig").Action;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const help_strings = @import("help_strings");
|
|
||||||
const vaxis = @import("vaxis");
|
const vaxis = @import("vaxis");
|
||||||
|
|
||||||
const framedata = @import("framedata").compressed;
|
const framedata = @import("framedata").compressed;
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,9 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const inputpkg = @import("../input.zig");
|
|
||||||
const args = @import("args.zig");
|
const args = @import("args.zig");
|
||||||
const Action = @import("ghostty.zig").Action;
|
const Action = @import("ghostty.zig").Action;
|
||||||
const Config = @import("../config/Config.zig");
|
const Config = @import("../config/Config.zig");
|
||||||
const themepkg = @import("../config/theme.zig");
|
const themepkg = @import("../config/theme.zig");
|
||||||
const tui = @import("tui.zig");
|
const tui = @import("tui.zig");
|
||||||
const internal_os = @import("../os/main.zig");
|
|
||||||
const global_state = &@import("../global.zig").state;
|
const global_state = &@import("../global.zig").state;
|
||||||
|
|
||||||
const vaxis = @import("vaxis");
|
const vaxis = @import("vaxis");
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const fs = std.fs;
|
const fs = std.fs;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const xdg = @import("../os/xdg.zig");
|
|
||||||
const args = @import("args.zig");
|
const args = @import("args.zig");
|
||||||
const Action = @import("ghostty.zig").Action;
|
const Action = @import("ghostty.zig").Action;
|
||||||
pub const Entry = @import("ssh-cache/Entry.zig");
|
pub const Entry = @import("ssh-cache/Entry.zig");
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ const Allocator = std.mem.Allocator;
|
||||||
const args = @import("args.zig");
|
const args = @import("args.zig");
|
||||||
const Action = @import("ghostty.zig").Action;
|
const Action = @import("ghostty.zig").Action;
|
||||||
const Config = @import("../config.zig").Config;
|
const Config = @import("../config.zig").Config;
|
||||||
const cli = @import("../cli.zig");
|
|
||||||
|
|
||||||
pub const Options = struct {
|
pub const Options = struct {
|
||||||
/// The path of the config file to validate. If this isn't specified,
|
/// The path of the config file to validate. If this isn't specified,
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const cli = @import("../cli.zig");
|
|
||||||
const inputpkg = @import("../input.zig");
|
const inputpkg = @import("../input.zig");
|
||||||
const state = &@import("../global.zig").state;
|
const state = &@import("../global.zig").state;
|
||||||
const c = @import("../main_c.zig");
|
const c = @import("../main_c.zig");
|
||||||
|
|
|
||||||
|
|
@ -29,8 +29,6 @@ const formatterpkg = @import("formatter.zig");
|
||||||
const themepkg = @import("theme.zig");
|
const themepkg = @import("theme.zig");
|
||||||
const url = @import("url.zig");
|
const url = @import("url.zig");
|
||||||
const Key = @import("key.zig").Key;
|
const Key = @import("key.zig").Key;
|
||||||
const KeyValue = @import("key.zig").Value;
|
|
||||||
const ErrorList = @import("ErrorList.zig");
|
|
||||||
const MetricModifier = fontpkg.Metrics.Modifier;
|
const MetricModifier = fontpkg.Metrics.Modifier;
|
||||||
const help_strings = @import("help_strings");
|
const help_strings = @import("help_strings");
|
||||||
pub const Command = @import("command.zig").Command;
|
pub const Command = @import("command.zig").Command;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const ArenaAllocator = std.heap.ArenaAllocator;
|
const ArenaAllocator = std.heap.ArenaAllocator;
|
||||||
const formatterpkg = @import("formatter.zig");
|
const formatterpkg = @import("formatter.zig");
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
/// Conditionals in Ghostty configuration are based on a static, typed
|
/// Conditionals in Ghostty configuration are based on a static, typed
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ const builtin = @import("builtin");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
const assert = @import("../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const ArenaAllocator = std.heap.ArenaAllocator;
|
const ArenaAllocator = std.heap.ArenaAllocator;
|
||||||
const internal_os = @import("../os/main.zig");
|
|
||||||
const file_load = @import("file_load.zig");
|
const file_load = @import("file_load.zig");
|
||||||
|
|
||||||
/// The path to the configuration that should be opened for editing.
|
/// The path to the configuration that should be opened for editing.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const global_state = &@import("../global.zig").state;
|
const global_state = &@import("../global.zig").state;
|
||||||
const internal_os = @import("../os/main.zig");
|
const internal_os = @import("../os/main.zig");
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,6 @@
|
||||||
//! between threads.
|
//! between threads.
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
/// Returns a blocking queue implementation for type T.
|
/// Returns a blocking queue implementation for type T.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
const std = @import("std");
|
|
||||||
const Config = @import("../config/Config.zig");
|
const Config = @import("../config/Config.zig");
|
||||||
|
|
||||||
const Template = struct {
|
const Template = struct {
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,6 @@
|
||||||
const Collection = @This();
|
const Collection = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const config = @import("../config.zig");
|
const config = @import("../config.zig");
|
||||||
const comparison = @import("../datastruct/comparison.zig");
|
const comparison = @import("../datastruct/comparison.zig");
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
const DeferredFace = @This();
|
const DeferredFace = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const fontconfig = @import("fontconfig");
|
const fontconfig = @import("fontconfig");
|
||||||
const macos = @import("macos");
|
const macos = @import("macos");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
const assert = @import("../quirks.zig").inlineAssert;
|
||||||
const fontconfig = @import("fontconfig");
|
const fontconfig = @import("fontconfig");
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,6 @@ const font = @import("../main.zig");
|
||||||
const Glyph = font.Glyph;
|
const Glyph = font.Glyph;
|
||||||
const Library = font.Library;
|
const Library = font.Library;
|
||||||
const opentype = @import("../opentype.zig");
|
const opentype = @import("../opentype.zig");
|
||||||
const fastmem = @import("../../fastmem.zig");
|
|
||||||
const quirks = @import("../../quirks.zig");
|
const quirks = @import("../../quirks.zig");
|
||||||
const config = @import("../../config.zig");
|
const config = @import("../../config.zig");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
const assert = @import("../../quirks.zig").inlineAssert;
|
||||||
const testing = std.testing;
|
const testing = std.testing;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
//! library implementation(s) require per-process.
|
//! library implementation(s) require per-process.
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const builtin = @import("builtin");
|
|
||||||
const options = @import("main.zig").options;
|
const options = @import("main.zig").options;
|
||||||
const freetype = @import("freetype");
|
const freetype = @import("freetype");
|
||||||
const font = @import("main.zig");
|
const font = @import("main.zig");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const sfnt = @import("sfnt.zig");
|
const sfnt = @import("sfnt.zig");
|
||||||
|
|
||||||
/// Font Header Table
|
/// Font Header Table
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const sfnt = @import("sfnt.zig");
|
const sfnt = @import("sfnt.zig");
|
||||||
|
|
||||||
/// Horizontal Header Table
|
/// Horizontal Header Table
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const sfnt = @import("sfnt.zig");
|
const sfnt = @import("sfnt.zig");
|
||||||
|
|
||||||
pub const FSSelection = packed struct(sfnt.uint16) {
|
pub const FSSelection = packed struct(sfnt.uint16) {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const sfnt = @import("sfnt.zig");
|
const sfnt = @import("sfnt.zig");
|
||||||
|
|
||||||
/// PostScript Table
|
/// PostScript Table
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const font = @import("../main.zig");
|
const font = @import("../main.zig");
|
||||||
|
|
||||||
/// SVG glyphs description table.
|
/// SVG glyphs description table.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const options = @import("main.zig").options;
|
const options = @import("main.zig").options;
|
||||||
const run = @import("shaper/run.zig");
|
const run = @import("shaper/run.zig");
|
||||||
const feature = @import("shaper/feature.zig");
|
const feature = @import("shaper/feature.zig");
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,6 @@
|
||||||
pub const Cache = @This();
|
pub const Cache = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const font = @import("../main.zig");
|
const font = @import("../main.zig");
|
||||||
const CacheTable = @import("../../datastruct/main.zig").CacheTable;
|
const CacheTable = @import("../../datastruct/main.zig").CacheTable;
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,9 @@ const builtin = @import("builtin");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
const assert = @import("../../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const macos = @import("macos");
|
const macos = @import("macos");
|
||||||
const trace = @import("tracy").trace;
|
|
||||||
const font = @import("../main.zig");
|
const font = @import("../main.zig");
|
||||||
const os = @import("../../os/main.zig");
|
const os = @import("../../os/main.zig");
|
||||||
const terminal = @import("../../terminal/main.zig");
|
const terminal = @import("../../terminal/main.zig");
|
||||||
const config = @import("../../config.zig");
|
|
||||||
const Feature = font.shape.Feature;
|
const Feature = font.shape.Feature;
|
||||||
const FeatureList = font.shape.FeatureList;
|
const FeatureList = font.shape.FeatureList;
|
||||||
const default_features = font.shape.default_features;
|
const default_features = font.shape.default_features;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
const assert = @import("../../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@ const Allocator = std.mem.Allocator;
|
||||||
const harfbuzz = @import("harfbuzz");
|
const harfbuzz = @import("harfbuzz");
|
||||||
const font = @import("../main.zig");
|
const font = @import("../main.zig");
|
||||||
const terminal = @import("../../terminal/main.zig");
|
const terminal = @import("../../terminal/main.zig");
|
||||||
const config = @import("../../config.zig");
|
|
||||||
const Feature = font.shape.Feature;
|
const Feature = font.shape.Feature;
|
||||||
const FeatureList = font.shape.FeatureList;
|
const FeatureList = font.shape.FeatureList;
|
||||||
const default_features = font.shape.default_features;
|
const default_features = font.shape.default_features;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const trace = @import("tracy").trace;
|
|
||||||
const font = @import("../main.zig");
|
const font = @import("../main.zig");
|
||||||
const Face = font.Face;
|
const Face = font.Face;
|
||||||
const Collection = font.Collection;
|
const Collection = font.Collection;
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,6 @@
|
||||||
const Face = @This();
|
const Face = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
const assert = @import("../../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const wuffs = @import("wuffs");
|
const wuffs = @import("wuffs");
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,8 @@
|
||||||
//!
|
//!
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
const z2d = @import("z2d");
|
|
||||||
|
|
||||||
const common = @import("common.zig");
|
const common = @import("common.zig");
|
||||||
const Shade = common.Shade;
|
const Shade = common.Shade;
|
||||||
const Quads = common.Quads;
|
const Quads = common.Quads;
|
||||||
|
|
@ -18,7 +15,6 @@ const Alignment = common.Alignment;
|
||||||
const fill = common.fill;
|
const fill = common.fill;
|
||||||
|
|
||||||
const font = @import("../../main.zig");
|
const font = @import("../../main.zig");
|
||||||
const Sprite = @import("../../sprite.zig").Sprite;
|
|
||||||
|
|
||||||
// Utility names for common fractions
|
// Utility names for common fractions
|
||||||
const one_eighth: f64 = 0.125;
|
const one_eighth: f64 = 0.125;
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,6 @@ const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
const assert = @import("../../../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
const z2d = @import("z2d");
|
|
||||||
|
|
||||||
const common = @import("common.zig");
|
const common = @import("common.zig");
|
||||||
const Thickness = common.Thickness;
|
const Thickness = common.Thickness;
|
||||||
const Shade = common.Shade;
|
const Shade = common.Shade;
|
||||||
|
|
@ -30,7 +28,6 @@ const hlineMiddle = common.hlineMiddle;
|
||||||
const vlineMiddle = common.vlineMiddle;
|
const vlineMiddle = common.vlineMiddle;
|
||||||
|
|
||||||
const font = @import("../../main.zig");
|
const font = @import("../../main.zig");
|
||||||
const Sprite = @import("../../sprite.zig").Sprite;
|
|
||||||
|
|
||||||
/// Specification of a traditional intersection-style line/box-drawing char,
|
/// Specification of a traditional intersection-style line/box-drawing char,
|
||||||
/// which can have a different style of line from each edge to the center.
|
/// which can have a different style of line from each edge to the center.
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,6 @@
|
||||||
//!
|
//!
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
const common = @import("common.zig");
|
const common = @import("common.zig");
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,9 @@
|
||||||
//! rather than being single-use.
|
//! rather than being single-use.
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
const z2d = @import("z2d");
|
|
||||||
|
|
||||||
const font = @import("../../main.zig");
|
const font = @import("../../main.zig");
|
||||||
const Sprite = @import("../../sprite.zig").Sprite;
|
|
||||||
|
|
||||||
const log = std.log.scoped(.sprite_font);
|
const log = std.log.scoped(.sprite_font);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,6 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
const z2d = @import("z2d");
|
|
||||||
|
|
||||||
const common = @import("common.zig");
|
const common = @import("common.zig");
|
||||||
const Thickness = common.Thickness;
|
const Thickness = common.Thickness;
|
||||||
const Corner = common.Corner;
|
const Corner = common.Corner;
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,6 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
const z2d = @import("z2d");
|
|
||||||
|
|
||||||
const common = @import("common.zig");
|
const common = @import("common.zig");
|
||||||
const Thickness = common.Thickness;
|
const Thickness = common.Thickness;
|
||||||
const Shade = common.Shade;
|
const Shade = common.Shade;
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,6 @@
|
||||||
//! having names that exactly match the enum fields in Sprite.
|
//! having names that exactly match the enum fields in Sprite.
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const font = @import("../../main.zig");
|
const font = @import("../../main.zig");
|
||||||
const Sprite = font.sprite.Sprite;
|
const Sprite = font.sprite.Sprite;
|
||||||
|
|
|
||||||
|
|
@ -23,8 +23,6 @@ const std = @import("std");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
const assert = @import("../../../quirks.zig").inlineAssert;
|
||||||
|
|
||||||
const z2d = @import("z2d");
|
|
||||||
|
|
||||||
const common = @import("common.zig");
|
const common = @import("common.zig");
|
||||||
const Thickness = common.Thickness;
|
const Thickness = common.Thickness;
|
||||||
const Alignment = common.Alignment;
|
const Alignment = common.Alignment;
|
||||||
|
|
|
||||||
|
|
@ -51,8 +51,6 @@ const std = @import("std");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const assert = @import("../../../quirks.zig").inlineAssert;
|
const assert = @import("../../../quirks.zig").inlineAssert;
|
||||||
|
|
||||||
const z2d = @import("z2d");
|
|
||||||
|
|
||||||
const common = @import("common.zig");
|
const common = @import("common.zig");
|
||||||
const Thickness = common.Thickness;
|
const Thickness = common.Thickness;
|
||||||
const Fraction = common.Fraction;
|
const Fraction = common.Fraction;
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@ const builtin = @import("builtin");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const macos = @import("macos");
|
const macos = @import("macos");
|
||||||
const codes = @import("keycodes.zig").entries;
|
const codes = @import("keycodes.zig").entries;
|
||||||
const Key = @import("key.zig").Key;
|
|
||||||
const Mods = @import("key.zig").Mods;
|
const Mods = @import("key.zig").Mods;
|
||||||
|
|
||||||
/// The current input source that is selected for the keyboard. This can
|
/// The current input source that is selected for the keyboard. This can
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
const assert = @import("../quirks.zig").inlineAssert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const Action = @import("Binding.zig").Action;
|
const Action = @import("Binding.zig").Action;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
const std = @import("std");
|
|
||||||
const key = @import("key.zig");
|
const key = @import("key.zig");
|
||||||
|
|
||||||
/// A single entry in the kitty keymap data. There are only ~100 entries
|
/// A single entry in the kitty keymap data. There are only ~100 entries
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Terminal = @import("../terminal/Terminal.zig");
|
const Terminal = @import("../terminal/Terminal.zig");
|
||||||
|
|
||||||
pub const Options = struct {
|
pub const Options = struct {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
const std = @import("std");
|
|
||||||
const cimgui = @import("cimgui");
|
const cimgui = @import("cimgui");
|
||||||
const terminal = @import("../terminal/main.zig");
|
const terminal = @import("../terminal/main.zig");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const cimgui = @import("cimgui");
|
const cimgui = @import("cimgui");
|
||||||
const terminal = @import("../terminal/main.zig");
|
const terminal = @import("../terminal/main.zig");
|
||||||
const inspector = @import("main.zig");
|
|
||||||
const units = @import("units.zig");
|
const units = @import("units.zig");
|
||||||
|
|
||||||
pub fn render(page: *const terminal.Page) void {
|
pub fn render(page: *const terminal.Page) void {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const testing = std.testing;
|
const testing = std.testing;
|
||||||
const Target = @import("target.zig").Target;
|
const Target = @import("target.zig").Target;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
const std = @import("std");
|
|
||||||
const builtin = @import("builtin");
|
|
||||||
const benchmark = @import("benchmark/main.zig");
|
const benchmark = @import("benchmark/main.zig");
|
||||||
|
|
||||||
pub const main = benchmark.cli.main;
|
pub const main = benchmark.cli.main;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
const std = @import("std");
|
|
||||||
const builtin = @import("builtin");
|
|
||||||
const synthetic = @import("synthetic/main.zig");
|
const synthetic = @import("synthetic/main.zig");
|
||||||
|
|
||||||
pub const main = synthetic.cli.main;
|
pub const main = synthetic.cli.main;
|
||||||
|
|
|
||||||
|
|
@ -6,14 +6,8 @@ const builtin = @import("builtin");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const posix = std.posix;
|
const posix = std.posix;
|
||||||
const build_config = @import("build_config.zig");
|
const build_config = @import("build_config.zig");
|
||||||
const options = @import("build_options");
|
|
||||||
const glslang = @import("glslang");
|
|
||||||
const macos = @import("macos");
|
const macos = @import("macos");
|
||||||
const oni = @import("oniguruma");
|
|
||||||
const cli = @import("cli.zig");
|
const cli = @import("cli.zig");
|
||||||
const internal_os = @import("os/main.zig");
|
|
||||||
const fontconfig = @import("fontconfig");
|
|
||||||
const harfbuzz = @import("harfbuzz");
|
|
||||||
const renderer = @import("renderer.zig");
|
const renderer = @import("renderer.zig");
|
||||||
const apprt = @import("apprt.zig");
|
const apprt = @import("apprt.zig");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
const TempDir = @This();
|
const TempDir = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const testing = std.testing;
|
const testing = std.testing;
|
||||||
const Dir = std.fs.Dir;
|
const Dir = std.fs.Dir;
|
||||||
const allocTmpDir = @import("file.zig").allocTmpDir;
|
const allocTmpDir = @import("file.zig").allocTmpDir;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const objc = @import("objc");
|
const objc = @import("objc");
|
||||||
const macos = @import("macos");
|
const macos = @import("macos");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const posix = std.posix;
|
const posix = std.posix;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const passwd = @import("passwd.zig");
|
const passwd = @import("passwd.zig");
|
||||||
const posix = std.posix;
|
const posix = std.posix;
|
||||||
const objc = @import("objc");
|
const objc = @import("objc");
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const objc = @import("objc");
|
const objc = @import("objc");
|
||||||
|
|
||||||
const log = std.log.scoped(.os);
|
const log = std.log.scoped(.os);
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
|
||||||
const wasm = @import("../wasm.zig");
|
const wasm = @import("../wasm.zig");
|
||||||
|
|
||||||
// Use the correct implementation
|
// Use the correct implementation
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const posix = std.posix;
|
const posix = std.posix;
|
||||||
const homedir = @import("homedir.zig");
|
const homedir = @import("homedir.zig");
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@
|
||||||
//! APIs. The renderers in this package assume that the renderer is already
|
//! APIs. The renderers in this package assume that the renderer is already
|
||||||
//! setup (OpenGL has a context, Vulkan has a surface, etc.)
|
//! setup (OpenGL has a context, Vulkan has a surface, etc.)
|
||||||
|
|
||||||
const std = @import("std");
|
|
||||||
const builtin = @import("builtin");
|
|
||||||
const build_config = @import("build_config.zig");
|
const build_config = @import("build_config.zig");
|
||||||
|
|
||||||
const cursor = @import("renderer/cursor.zig");
|
const cursor = @import("renderer/cursor.zig");
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
pub const OpenGL = @This();
|
pub const OpenGL = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const gl = @import("opengl");
|
const gl = @import("opengl");
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
const apprt = @import("../apprt.zig");
|
const apprt = @import("../apprt.zig");
|
||||||
const font = @import("../font/main.zig");
|
const font = @import("../font/main.zig");
|
||||||
const renderer = @import("../renderer.zig");
|
const renderer = @import("../renderer.zig");
|
||||||
const Config = @import("../config.zig").Config;
|
|
||||||
|
|
||||||
/// The derived configuration for this renderer implementation.
|
/// The derived configuration for this renderer implementation.
|
||||||
config: renderer.Renderer.DerivedConfig,
|
config: renderer.Renderer.DerivedConfig,
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@ pub const Thread = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const xev = @import("../global.zig").xev;
|
const xev = @import("../global.zig").xev;
|
||||||
const crash = @import("../crash/main.zig");
|
const crash = @import("../crash/main.zig");
|
||||||
const internal_os = @import("../os/main.zig");
|
const internal_os = @import("../os/main.zig");
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ const std = @import("std");
|
||||||
const assert = std.debug.assert;
|
const assert = std.debug.assert;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const oni = @import("oniguruma");
|
const oni = @import("oniguruma");
|
||||||
const configpkg = @import("../config.zig");
|
|
||||||
const inputpkg = @import("../input.zig");
|
const inputpkg = @import("../input.zig");
|
||||||
const terminal = @import("../terminal/main.zig");
|
const terminal = @import("../terminal/main.zig");
|
||||||
const point = terminal.point;
|
const point = terminal.point;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const assert = @import("../quirks.zig").inlineAssert;
|
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const ArenaAllocator = std.heap.ArenaAllocator;
|
const ArenaAllocator = std.heap.ArenaAllocator;
|
||||||
const configpkg = @import("../config.zig");
|
const configpkg = @import("../config.zig");
|
||||||
|
|
|
||||||
|
|
@ -3,17 +3,13 @@ const Self = @This();
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const assert = @import("../../quirks.zig").inlineAssert;
|
|
||||||
const builtin = @import("builtin");
|
|
||||||
const objc = @import("objc");
|
const objc = @import("objc");
|
||||||
|
|
||||||
const mtl = @import("api.zig");
|
const mtl = @import("api.zig");
|
||||||
const Renderer = @import("../generic.zig").Renderer(Metal);
|
const Renderer = @import("../generic.zig").Renderer(Metal);
|
||||||
const Metal = @import("../Metal.zig");
|
const Metal = @import("../Metal.zig");
|
||||||
const Target = @import("Target.zig");
|
const Target = @import("Target.zig");
|
||||||
const Pipeline = @import("Pipeline.zig");
|
|
||||||
const RenderPass = @import("RenderPass.zig");
|
const RenderPass = @import("RenderPass.zig");
|
||||||
const Buffer = @import("buffer.zig").Buffer;
|
|
||||||
|
|
||||||
const Health = @import("../../renderer.zig").Health;
|
const Health = @import("../../renderer.zig").Health;
|
||||||
|
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue