|
1 | 1 | ## Index
|
2 | 2 |
|
3 |
| -- [term.cursor_to()](#termcursor_to) |
4 |
| -- [term.cursor_moveto()](#termcursor_moveto) |
5 |
| -- [term.cursor_up()](#termcursor_up) |
6 |
| -- [term.cursor_down()](#termcursor_down) |
7 |
| -- [term.cursor_forward()](#termcursor_forward) |
8 |
| -- [term.cursor_backward()](#termcursor_backward) |
9 |
| -- [term.cursor_line_next()](#termcursor_line_next) |
10 |
| -- [term.cursor_line_prev()](#termcursor_line_prev) |
11 |
| -- [term.cursor_horizontal()](#termcursor_horizontal) |
12 |
| -- [term.cursor_savepos()](#termcursor_savepos) |
13 |
| -- [term.cursor_restorepos()](#termcursor_restorepos) |
14 |
| -- [term.cursor_save()](#termcursor_save) |
15 |
| -- [term.cursor_restore()](#termcursor_restore) |
16 |
| -- [term.cursor_hide()](#termcursor_hide) |
17 |
| -- [term.cursor_show()](#termcursor_show) |
18 |
| -- [term.cursor_getpos()](#termcursor_getpos) |
19 |
| -- [term.erase_line_end()](#termerase_line_end) |
20 |
| -- [term.erase_line_start()](#termerase_line_start) |
21 |
| -- [term.erase_line()](#termerase_line) |
22 |
| -- [term.erase_screen_end()](#termerase_screen_end) |
23 |
| -- [term.erase_screen_start()](#termerase_screen_start) |
24 |
| -- [term.erase_screen()](#termerase_screen) |
25 |
| -- [term.erase_saved_lines()](#termerase_saved_lines) |
26 |
| -- [term.scroll_down()](#termscroll_down) |
27 |
| -- [term.scroll_up()](#termscroll_up) |
28 |
| -- [term.tab_set()](#termtab_set) |
29 |
| -- [term.tab_clear()](#termtab_clear) |
30 |
| -- [term.tab_clearall()](#termtab_clearall) |
31 |
| -- [term.beep()](#termbeep) |
32 |
| -- [term.hyperlink()](#termhyperlink) |
| 3 | +* [term.cursor_to()](#termcursor_to) |
| 4 | +* [term.cursor_moveto()](#termcursor_moveto) |
| 5 | +* [term.cursor_up()](#termcursor_up) |
| 6 | +* [term.cursor_down()](#termcursor_down) |
| 7 | +* [term.cursor_forward()](#termcursor_forward) |
| 8 | +* [term.cursor_backward()](#termcursor_backward) |
| 9 | +* [term.cursor_line_next()](#termcursor_line_next) |
| 10 | +* [term.cursor_line_prev()](#termcursor_line_prev) |
| 11 | +* [term.cursor_horizontal()](#termcursor_horizontal) |
| 12 | +* [term.cursor_savepos()](#termcursor_savepos) |
| 13 | +* [term.cursor_restorepos()](#termcursor_restorepos) |
| 14 | +* [term.cursor_save()](#termcursor_save) |
| 15 | +* [term.cursor_restore()](#termcursor_restore) |
| 16 | +* [term.cursor_hide()](#termcursor_hide) |
| 17 | +* [term.cursor_show()](#termcursor_show) |
| 18 | +* [term.cursor_getpos()](#termcursor_getpos) |
| 19 | +* [term.erase_line_end()](#termerase_line_end) |
| 20 | +* [term.erase_line_start()](#termerase_line_start) |
| 21 | +* [term.erase_line()](#termerase_line) |
| 22 | +* [term.erase_screen_end()](#termerase_screen_end) |
| 23 | +* [term.erase_screen_start()](#termerase_screen_start) |
| 24 | +* [term.erase_screen()](#termerase_screen) |
| 25 | +* [term.erase_saved_lines()](#termerase_saved_lines) |
| 26 | +* [term.scroll_down()](#termscroll_down) |
| 27 | +* [term.scroll_up()](#termscroll_up) |
| 28 | +* [term.tab_set()](#termtab_set) |
| 29 | +* [term.tab_clear()](#termtab_clear) |
| 30 | +* [term.tab_clearall()](#termtab_clearall) |
| 31 | +* [term.beep()](#termbeep) |
| 32 | +* [term.hyperlink()](#termhyperlink) |
33 | 33 |
|
34 | 34 | ### term.cursor_to()
|
35 | 35 |
|
36 | 36 | Move the cursor position to a supplied row and column. Both default to `0` if not supplied
|
37 | 37 |
|
38 | 38 | #### Arguments
|
39 | 39 |
|
40 |
| -- **$1** (int): row |
41 |
| -- **$1** (int): column |
| 40 | +* **$1** (int): row |
| 41 | +* **$1** (int): column |
42 | 42 |
|
43 | 43 | ### term.cursor_moveto()
|
44 | 44 |
|
45 | 45 | Moves cursor position to a supplied _relative_ row and column. Both default to `0` if not supplied (FIXME: implement)
|
46 | 46 |
|
47 | 47 | #### Arguments
|
48 | 48 |
|
49 |
| -- **$1** (int): row |
50 |
| -- **$1** (int): column |
| 49 | +* **$1** (int): row |
| 50 | +* **$1** (int): column |
51 | 51 |
|
52 | 52 | ### term.cursor_up()
|
53 | 53 |
|
54 | 54 | Moves the cursor up. Defaults to `1` if not supplied
|
55 | 55 |
|
56 | 56 | #### Arguments
|
57 | 57 |
|
58 |
| -- **$1** (int): count |
| 58 | +* **$1** (int): count |
59 | 59 |
|
60 | 60 | ### term.cursor_down()
|
61 | 61 |
|
62 | 62 | Moves the cursor down. Defaults to `1` if not supplied
|
63 | 63 |
|
64 | 64 | #### Arguments
|
65 | 65 |
|
66 |
| -- **$1** (int): count |
| 66 | +* **$1** (int): count |
67 | 67 |
|
68 | 68 | ### term.cursor_forward()
|
69 | 69 |
|
70 | 70 | Moves the cursor forward. Defaults to `1` if not supplied
|
71 | 71 |
|
72 | 72 | #### Arguments
|
73 | 73 |
|
74 |
| -- **$1** (int): count |
| 74 | +* **$1** (int): count |
75 | 75 |
|
76 | 76 | ### term.cursor_backward()
|
77 | 77 |
|
78 | 78 | Moves the cursor backwards. Defaults to `1` if not supplied
|
79 | 79 |
|
80 | 80 | #### Arguments
|
81 | 81 |
|
82 |
| -- **$1** (int): count |
| 82 | +* **$1** (int): count |
83 | 83 |
|
84 | 84 | ### term.cursor_line_next()
|
85 | 85 |
|
86 | 86 | Moves the cursor to the next line. Defaults to `1` if not supplied
|
87 | 87 |
|
88 | 88 | #### Arguments
|
89 | 89 |
|
90 |
| -- **$1** (int): count |
| 90 | +* **$1** (int): count |
91 | 91 |
|
92 | 92 | ### term.cursor_line_prev()
|
93 | 93 |
|
94 | 94 | Moves the cursor to the previous line. Defaults to `1` if not supplied
|
95 | 95 |
|
96 | 96 | #### Arguments
|
97 | 97 |
|
98 |
| -- **$1** (int): count |
| 98 | +* **$1** (int): count |
99 | 99 |
|
100 | 100 | ### term.cursor_horizontal()
|
101 | 101 |
|
102 | 102 | Moves the cursor ?
|
103 | 103 |
|
104 | 104 | #### Arguments
|
105 | 105 |
|
106 |
| -- **$1** (int): count |
| 106 | +* **$1** (int): count |
107 | 107 |
|
108 | 108 | ### term.cursor_savepos()
|
109 | 109 |
|
@@ -219,5 +219,6 @@ Construct hyperlink
|
219 | 219 |
|
220 | 220 | #### Arguments
|
221 | 221 |
|
222 |
| -- **$1** (string): text |
223 |
| -- **$2** (string): url |
| 222 | +* **$1** (string): text |
| 223 | +* **$2** (string): url |
| 224 | + |
0 commit comments