mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-22 21:00:15 +00:00
separate out runtime and buildtime uucode tables
This commit is contained in:
@@ -60,29 +60,22 @@ const is_symbol = config.Extension{
|
||||
|
||||
pub const tables = [_]config.Table{
|
||||
.{
|
||||
.extensions = &.{wcwidth},
|
||||
.name = "runtime",
|
||||
.extensions = &.{},
|
||||
.fields = &.{
|
||||
d.field("is_emoji_presentation"),
|
||||
d.field("case_folding_full"),
|
||||
},
|
||||
},
|
||||
.{
|
||||
.name = "buildtime",
|
||||
.extensions = &.{ wcwidth, width, is_symbol },
|
||||
.fields = &.{
|
||||
width.field("width"),
|
||||
d.field("grapheme_break"),
|
||||
is_symbol.field("is_symbol"),
|
||||
d.field("is_emoji_modifier"),
|
||||
d.field("is_emoji_modifier_base"),
|
||||
},
|
||||
},
|
||||
.{
|
||||
.extensions = &.{ wcwidth, width },
|
||||
.fields = &.{
|
||||
width.field("width"),
|
||||
},
|
||||
},
|
||||
.{
|
||||
.fields = &.{
|
||||
d.field("grapheme_break"),
|
||||
},
|
||||
},
|
||||
.{
|
||||
.extensions = &.{is_symbol},
|
||||
.fields = &.{
|
||||
is_symbol.field("is_symbol"),
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user