We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 615fa7a + 066de9d commit ca847b7Copy full SHA for ca847b7
src/mbyte.c
@@ -1545,6 +1545,15 @@ utf_char2cells(int c)
1545
{0x1f6e9, 0x1f6e9},
1546
{0x1f6f0, 0x1f6f0},
1547
{0x1f6f3, 0x1f6f3}
1548
+#ifdef FEAT_GUI_MACVIM
1549
+ // Include SF Symbols characters, which should be rendered as
1550
+ // double-width. All of them are in the Supplementary Private Use Area-B
1551
+ // range. The exact range was determined by downloading the "SF Symbols"
1552
+ // app from Apple, and then selecting all symbols, copying them out, and
1553
+ // inspecting the unicode values of them.
1554
+ ,
1555
+ {0x100000, 0x100d7f}
1556
+#endif
1557
};
1558
1559
if (c >= 0x100)
0 commit comments