()
| 22 | } |
| 23 | |
| 24 | func (p *Program) initTerminal() error { |
| 25 | if p.disableRenderer { |
| 26 | return nil |
| 27 | } |
| 28 | return p.initInput() |
| 29 | } |
| 30 | |
| 31 | // restoreTerminalState restores the terminal to the state prior to running the |
| 32 | // Bubble Tea program. |
no test coverage detected