module

Termify::ANSI::Cursor

Class methods

down(n = 0) : String

Move the cursor down n lines. 0 is the same as 1.

Source
hide
Source
left(n = 0) : String

Move the cursor left n columns. 0 is the same as 1.

Source
restore
Source
right(n = 0) : String

Move the cursor right n columns. 0 is the same as 1.

Source
save
Source
show
Source
to(x = 0, y = 0) : String

Move the cursor to line y, column x. 0 is the same as 1. This indexes from the top left corner of the screen.

Source
up(n = 0) : String

Move the cursor up n lines. 0 is the same as 1.

Source