OptAltScreen controls whether the alternate screen buffer is used. The default is true. The TCELL_ALTSCREEN=disable environment override is still honored.
| 78 | // The default is true. The TCELL_ALTSCREEN=disable environment override |
| 79 | // is still honored. |
| 80 | type OptAltScreen bool |
| 81 | |
| 82 | func (o OptAltScreen) apply(t *tScreen) { |
| 83 | t.altScreen = bool(o) |
no outgoing calls
no test coverage detected