diff options
author | Dusan Popovic <dpx@binaryapparatus.com> | 2021-10-16 20:52:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-10-16 20:52:05 +0100 |
commit | 4eeedc09fed0cbbb3ba48317e0a01e20cd0b4f80 (patch) | |
tree | cac81ddbe09eac705e72e2c3390749cc60a16ae0 /src/gui.h | |
parent | c89c91cafd91fbf17f431d800bbf4cafcffffe7a (diff) | |
download | vim-git-4eeedc09fed0cbbb3ba48317e0a01e20cd0b4f80.tar.gz |
patch 8.2.3524: GUI: ligatures are not usedv8.2.3524
Problem: GUI: ligatures are not used.
Solution: Add the 'guiligatures' option. (Dusan Popovic, closes #8933)
Diffstat (limited to 'src/gui.h')
-rw-r--r-- | src/gui.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -409,6 +409,9 @@ typedef struct Gui char_u *browse_fname; // file name from filedlg guint32 event_time; + + char_u ligatures_map[256]; // ascii map for characters 0-255, value is + // 1 if in 'guiligatures' #endif // FEAT_GUI_GTK #if defined(FEAT_GUI_TABLINE) \ |