summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-06-13 07:56:08 -0400
committerGitHub <noreply@github.com>2020-06-13 07:56:08 -0400
commit222eac739d43c7a380b9a37db91bf61ed8dbc65a (patch)
treeff9b5466c7b99925a873350cbc8488bbd67950b5 /st.h
parentb6a1f2d3339553e314e9f563b96c38f4859fdd08 (diff)
parente3b821dcb3511d60341dec35ee05a4a0abfef7f2 (diff)
Merge pull request #224 from Azumgi/glyph_truncation_fix
Glyph truncation fix
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,