summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-09-04 23:22:12 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-09-04 23:22:12 +0530
commit21a61dabdc738568273910445352cb0e59430eea (patch)
tree78078c7245d24af65d5160cf1b67e3c206f01214 /st.h
parent27412972e99912314e905f3f09b1d131662f1cf3 (diff)
manual patching to fix wide glyphs truncation
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 f6bd3b4..7185544 100644
--- a/st.h
+++ b/st.h
@@ -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,