summaryrefslogtreecommitdiff
path: root/src/unicode/props_table.zig
blob: d168fbb9c7ac573e485b98c8e63529b971669d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const Properties = @import("Properties.zig");
const lut = @import("lut.zig");

/// The lookup tables for Ghostty.
pub const table = table: {
    // This is only available after running a generator as part of the Ghostty
    // build.zig process, but due to Zig's lazy analysis we can still reference
    // it here.
    //
    // An example process is the `main` in `props_uucode.zig`
    const generated = @import("unicode_tables").Tables(Properties);
    const Tables = lut.Tables(Properties);
    break :table Tables{
        .stage1 = &generated.stage1,
        .stage2 = &generated.stage2,
        .stage3 = &generated.stage3,
    };
};