MCPcopy Create free account
hub / github.com/LagPixelLOL/ChatGPTCLIBot / cursor_down

Method cursor_down

main/interface/cpp-terminal/base.cpp:32–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30std::string Term::cursor_up(std::size_t rows) { return "\033[" + std::to_string(rows) + 'A'; }
31
32std::string Term::cursor_down(std::size_t rows) { return "\033[" + std::to_string(rows) + 'B'; }
33
34std::string Term::cursor_right(std::size_t columns) { return "\033[" + std::to_string(columns) + 'C'; }
35

Callers

nothing calls this directly

Calls 1

to_stringFunction · 0.50

Tested by

no test coverage detected