st
simple terminal
git clone https://9o.is/git/st.git
commit 73b1e777a70c0820cc70ed3fbd8cd15ca4e528b4 parent 3042e57d2a9b66d0b754fce26f79b8cb1fa79721 Author: Anders Eurenius <aes@spotify.com> Date: Sat, 21 Jun 2014 20:30:22 +0200 Render invisible attribute Implement invisible mode by setting the foreground color to be the same as the background color. Not rendering anything would also be an alternative, but this seems less likely to cause surprises in conjunction with any hacks. Signed-off-by: Roberto E. Vargas Caballero <k0ga@shike2.com> Diffstat:
| M | st.c | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/st.c b/st.c @@ -3236,6 +3236,9 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) { if(base.mode & ATTR_BLINK && term.mode & MODE_BLINK) fg = bg; + if(base.mode & ATTR_INVISIBLE) + fg = bg; + /* Intelligent cleaning up of the borders. */ if(x == 0) { xclear(0, (y == 0)? 0 : winy, borderpx,