From c7ed1f4f4b40b2267fb97d879d0a2525b7e5cd66 Mon Sep 17 00:00:00 2001 From: Aiden Gall Date: Fri, 29 Mar 2024 16:31:26 +0000 Subject: patch wide glyph support --- st.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'st.h') diff --git a/st.h b/st.h index e5ca4e0..a70016c 100644 --- a/st.h +++ b/st.h @@ -39,6 +39,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