summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorIskustvo <iskustvo@yahoo.com>2023-01-07 01:23:37 +0100
committerMarcelo Lira <setanta@gmail.com>2025-03-02 04:20:26 -0300
commit6fc6b4a47ab27f191acda7572b3f9082dbbe4b6c (patch)
treeb43074c5bfe018f93bf86be9b25138a12f18de97 /st.h
parentf9cdb0e485c0b8229c50e4d88338f613834dc734 (diff)
add glyph wide support patch
Diffstat (limited to 'st.h')
-rw-r--r--st.h6
1 files changed, 6 insertions, 0 deletions
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,