rl_lang/docs/entries/stdlib/term/term_next_line.rs
1use crate::docs::entry::FnEntry;
2
3pub static TERM_NEXT_LINE: FnEntry = FnEntry {
4 signature: "term_next_line(n)",
5 description: "moves the cursor to the beginning of the line n rows down",
6 example: "get std::term::term_next_line\n\nterm_next_line(1)",
7 expected_output: None,
8 returns: "",
9 errors: None,
10 see_also: &[],
11 since: None,
12};