summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-07-01 08:36:48 +0500
committerpryazha <pryadeiniv@mail.ru>2025-07-01 08:36:48 +0500
commit7a35432782a8bb38429854180a7d16f82edec34a (patch)
tree85ba292c29cb28fa7e75dd65bb4b7f26102982f2 /st.h
parentd18e6eb27e002872429d3f931bc08d6af816e1f7 (diff)
changes (apparently)
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..19d81b0 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,