| 69 | return "\0337\033[?1049h"; // save current cursor position, save screen |
| 70 | } |
| 71 | std::string Term::screen_load() |
| 72 | { |
| 73 | return "\033[?1049l\0338"; // restores screen, restore current cursor position |
| 74 | } |
| 75 | |
| 76 | std::string Term::terminal_title(const std::string& title) { return "\033]0;" + title + '\a'; } |
nothing calls this directly
no outgoing calls
no test coverage detected