mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-21 03:06:15 +03:00
7 lines
149 B
Zig
7 lines
149 B
Zig
const builtin = @import("builtin");
|
|
|
|
pub const can_pretty_print = switch (builtin.os.tag) {
|
|
.ios, .tvos, .watchos => false,
|
|
else => true,
|
|
};
|