()
| 16 | } |
| 17 | |
| 18 | pub fn restore() -> io::Result<()> { |
| 19 | crossterm::execute!( |
| 20 | io::stdout(), |
| 21 | crossterm::terminal::LeaveAlternateScreen, |
| 22 | crossterm::event::DisableMouseCapture, |
| 23 | crossterm::event::DisableBracketedPaste, |
| 24 | )?; |
| 25 | crossterm::terminal::disable_raw_mode()?; |
| 26 | Ok(()) |
| 27 | } |
no outgoing calls