| 34 | std::string Term::cursor_right(std::size_t columns) { return "\033[" + std::to_string(columns) + 'C'; } |
| 35 | |
| 36 | std::string Term::cursor_left(std::size_t columns) { return "\033[" + std::to_string(columns) + 'D'; } |
| 37 | |
| 38 | std::pair<std::size_t, std::size_t> Term::cursor_position() { |
| 39 | // write cursor position report |
nothing calls this directly
no test coverage detected