add glyph wide support patch

This commit is contained in:
wael
2022-04-11 16:45:49 +03:00
committed by Łukasz Pankowski
parent 07b35d356c
commit 00ad398632
2 changed files with 69 additions and 63 deletions

6
st.h
View File

@ -37,6 +37,12 @@ enum glyph_attribute {
ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
};
enum drawing_mode {
DRAW_NONE = 0,
DRAW_BG = 1 << 0,
DRAW_FG = 1 << 1,
};
enum selection_mode {
SEL_IDLE = 0,
SEL_EMPTY = 1,