From 6fc6b4a47ab27f191acda7572b3f9082dbbe4b6c Mon Sep 17 00:00:00 2001 From: Iskustvo Date: Sat, 7 Jan 2023 01:23:37 +0100 Subject: add glyph wide support patch --- st.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'st.h') diff --git a/st.h b/st.h index fd3b0d8..0053050 100644 --- a/st.h +++ b/st.h @@ -36,6 +36,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, -- cgit v1.2.3