diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2023-01-04 13:24:07 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2023-01-04 13:24:07 -0500 |
| commit | 7fd24679e974c55b7593bb3119f887a155928ed3 (patch) | |
| tree | 22612c7c97f34cce1c892a5c80526032f622f376 /st.h | |
| parent | 0cca72d24f2f5b1e19ada2c60ec6900800467ec6 (diff) | |
| download | st-7fd24679e974c55b7593bb3119f887a155928ed3.tar.gz | |
Applied scrollback reflow patch
Diffstat (limited to 'st.h')
| -rw-r--r-- | st.h | 26 |
1 files changed, 14 insertions, 12 deletions
@@ -23,18 +23,19 @@ enum glyph_attribute { ATTR_NULL = 0, - ATTR_BOLD = 1 << 0, - ATTR_FAINT = 1 << 1, - ATTR_ITALIC = 1 << 2, - ATTR_UNDERLINE = 1 << 3, - ATTR_BLINK = 1 << 4, - ATTR_REVERSE = 1 << 5, - ATTR_INVISIBLE = 1 << 6, - ATTR_STRUCK = 1 << 7, - ATTR_WRAP = 1 << 8, - ATTR_WIDE = 1 << 9, - ATTR_WDUMMY = 1 << 10, - ATTR_BOXDRAW = 1 << 11, + ATTR_SET = 1 << 0, + ATTR_BOLD = 1 << 1, + ATTR_FAINT = 1 << 2, + ATTR_ITALIC = 1 << 3, + ATTR_UNDERLINE = 1 << 4, + ATTR_BLINK = 1 << 5, + ATTR_REVERSE = 1 << 6, + ATTR_INVISIBLE = 1 << 7, + ATTR_STRUCK = 1 << 8, + ATTR_WRAP = 1 << 9, + ATTR_WIDE = 1 << 10, + ATTR_WDUMMY = 1 << 11, + ATTR_BOXDRAW = 1 << 12, ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT, }; @@ -92,6 +93,7 @@ void toggleprinter(const Arg *); int tattrset(int); void tnew(int, int); +int tisaltscreen(void); void tresize(int, int); void tsetdirtattr(int); void ttyhangup(void); |