mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
22 lines
727 B
Zig
22 lines
727 B
Zig
const builtin = @import("builtin");
|
|
|
|
pub usingnamespace @import("config/key.zig");
|
|
pub const Config = @import("config/Config.zig");
|
|
|
|
// Field types
|
|
pub const CopyOnSelect = Config.CopyOnSelect;
|
|
pub const Keybinds = Config.Keybinds;
|
|
pub const MouseShiftCapture = Config.MouseShiftCapture;
|
|
pub const NonNativeFullscreen = Config.NonNativeFullscreen;
|
|
pub const OptionAsAlt = Config.OptionAsAlt;
|
|
pub const ShellIntegrationFeatures = Config.ShellIntegrationFeatures;
|
|
pub const ClipboardAccess = Config.ClipboardAccess;
|
|
|
|
// Alternate APIs
|
|
pub const CAPI = @import("config/CAPI.zig");
|
|
pub const Wasm = if (!builtin.target.isWasm()) struct {} else @import("config/Wasm.zig");
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|