diff options
Diffstat (limited to 'term')
-rw-r--r-- | term/cursor.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/term/cursor.lua b/term/cursor.lua index e8480a9..e37864c 100644 --- a/term/cursor.lua +++ b/term/cursor.lua | |||
@@ -22,10 +22,10 @@ local term = require 'term.core' | |||
22 | 22 | ||
23 | local cursor = { | 23 | local cursor = { |
24 | ['goto'] = term.maketermfunc '%d;%dH', | 24 | ['goto'] = term.maketermfunc '%d;%dH', |
25 | goup = term.maketermfunc '%d;A', | 25 | goup = term.maketermfunc '%dA', |
26 | godown = term.maketermfunc '%d;B', | 26 | godown = term.maketermfunc '%dB', |
27 | goright = term.maketermfunc '%d;C', | 27 | goright = term.maketermfunc '%dC', |
28 | goleft = term.maketermfunc '%d;D', | 28 | goleft = term.maketermfunc '%dD', |
29 | save = term.maketermfunc 's', | 29 | save = term.maketermfunc 's', |
30 | restore = term.maketermfunc 'u', | 30 | restore = term.maketermfunc 'u', |
31 | } | 31 | } |