Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/mbyte.c
Original file line number Diff line number Diff line change
Expand Up @@ -1545,6 +1545,15 @@ utf_char2cells(int c)
{0x1f6e9, 0x1f6e9},
{0x1f6f0, 0x1f6f0},
{0x1f6f3, 0x1f6f3}
#ifdef FEAT_GUI_MACVIM
// Include SF Symbols characters, which should be rendered as
// double-width. All of them are in the Supplementary Private Use Area-B
// range. The exact range was determined by downloading the "SF Symbols"
// app from Apple, and then selecting all symbols, copying them out, and
// inspecting the unicode values of them.
,
{0x100000, 0x100d7f}
#endif
};

if (c >= 0x100)
Expand Down