mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-07-29 11:57:57 +00:00
trying a bunch of things to get performance to match
This commit is contained in:
@@ -345,7 +345,7 @@ pub fn print(self: *Terminal, c: u21) !void {
|
||||
if (c == 0xFE0F or c == 0xFE0E) {
|
||||
// This only applies to emoji
|
||||
const prev_props = unicode.getProperties(prev.cell.content.codepoint);
|
||||
const emoji = prev_props.grapheme_boundary_class.isExtendedPictographic();
|
||||
const emoji = unicode.isExtendedPictographic(prev_props.grapheme_boundary_class);
|
||||
if (!emoji) return;
|
||||
|
||||
switch (c) {
|
||||
|
||||
Reference in New Issue
Block a user