cursorUp : Nat -> String
Moves the cursor n columns up.
If the cursor is at the edge of the screen it has no effect.
Totality: total
Visibility: exportcursorUp1 : String
- Totality: total
Visibility: export cursorDown : Nat -> String
Moves the cursor n columns down.
If the cursor is at the edge of the screen it has no effect.
Totality: total
Visibility: exportcursorDown1 : String
- Totality: total
Visibility: export cursorForward : Nat -> String
Moves the cursor n columns forward.
If the cursor is at the edge of the screen it has no effect.
Totality: total
Visibility: exportcursorForward1 : String
- Totality: total
Visibility: export cursorBack : Nat -> String
Moves the cursor n columns back.
If the cursor is at the edge of the screen it has no effect.
Totality: total
Visibility: exportcursorBack1 : String
- Totality: total
Visibility: export cursorNextLine : Nat -> String
Moves the cursor at the beginning of n lines down.
If the cursor is at the edge of the screen it has no effect.
Totality: total
Visibility: exportcursorNextLine1 : String
- Totality: total
Visibility: export cursorPrevLine : Nat -> String
Moves the cursor at the beginning of n lines up.
If the cursor is at the edge of the screen it has no effect.
Totality: total
Visibility: exportcursorPrevLine1 : String
- Totality: total
Visibility: export cursorMove : Nat -> Nat -> String
Moves the cursor at an arbitrary line and column.
Both lines and columns start at 1.
Totality: total
Visibility: exportdata EraseDirection : Type
- Totality: total
Visibility: public export
Constructors:
Start : EraseDirection
End : EraseDirection
All : EraseDirection
Hint: Cast EraseDirection String
eraseScreen : EraseDirection -> String
Clears part of the screen.
Totality: total
Visibility: exporteraseLine : EraseDirection -> String
Clears part of the line.
Totality: total
Visibility: exportscrollUp : Nat -> String
Scrolls the whole screen up by n lines.
Totality: total
Visibility: exportscrollUp1 : String
- Totality: total
Visibility: export scrollDown : Nat -> String
Scrolls the whole screen down by n lines.
Totality: total
Visibility: exportscrollDown1 : String
- Totality: total
Visibility: export