Skip to main content

rl_lang/docs/entries/stdlib/term/
term_move_to_col.rs

1use crate::docs::entry::FnEntry;
2
3pub static TERM_MOVE_TO_COL: FnEntry = FnEntry {
4    signature: "term_move_to_col(col)",
5    description: "moves the cursor to an absolute column, keeping the current row",
6    example: "get std::term::term_move_to_col\n\nterm_move_to_col(0)",
7    expected_output: None,
8    returns: "",
9    errors: None,
10    see_also: &[],
11    since: None,
12};