diff options
| author | Iskustvo <iskustvo@yahoo.com> | 2023-01-07 01:23:37 +0100 |
|---|---|---|
| committer | Marcelo Lira <setanta@gmail.com> | 2025-03-02 04:20:26 -0300 |
| commit | 6fc6b4a47ab27f191acda7572b3f9082dbbe4b6c (patch) | |
| tree | b43074c5bfe018f93bf86be9b25138a12f18de97 /st.h | |
| parent | f9cdb0e485c0b8229c50e4d88338f613834dc734 (diff) | |
add glyph wide support patch
Diffstat (limited to 'st.h')
| -rw-r--r-- | st.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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, |
