| 65 | std::string Term::clear_eol() { return "\033[K"; } |
| 66 | |
| 67 | std::string Term::screen_save() |
| 68 | { |
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected