Adding wide glyphs patch

This commit is contained in:
bakkeby 2020-11-14 16:24:07 +01:00
parent ef994f3e6d
commit a23971fff1
4 changed files with 82 additions and 1 deletions

8
st.h
View file

@ -51,6 +51,14 @@ enum glyph_attribute {
ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
};
#if WIDE_GLYPHS_PATCH
enum drawing_mode {
DRAW_NONE = 0,
DRAW_BG = 1 << 0,
DRAW_FG = 1 << 1,
};
#endif // WIDE_GLYPHS_PATCH
enum selection_mode {
SEL_IDLE = 0,
SEL_EMPTY = 1,