summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorDreomite <dreomite@protonmail.com>2020-06-13 02:29:41 +0300
committerDreomite <dreomite@protonmail.com>2020-06-13 04:15:30 +0300
commite3b821dcb3511d60341dec35ee05a4a0abfef7f2 (patch)
treeff9b5466c7b99925a873350cbc8488bbd67950b5 /st.h
parentca42c0cc02f0a11e8171f1dfda1a916139e3de01 (diff)
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 33cc5d4..b85474b 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,