summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorAiden Gall <aiden@aidengall.xyz>2024-03-29 16:31:26 +0000
committerAiden Gall <aiden@aidengall.xyz>2024-03-29 16:31:26 +0000
commitc7ed1f4f4b40b2267fb97d879d0a2525b7e5cd66 (patch)
treefe93802188b045c11093e18041b5f2aa1f74a598 /st.h
parenta4341a1e8fe1586c17ff33dd8fb3396a97b0a6f0 (diff)
patch wide glyph support
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 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,