aboutsummaryrefslogtreecommitdiff
path: root/term
diff options
context:
space:
mode:
Diffstat (limited to 'term')
-rw-r--r--term/cursor.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/term/cursor.lua b/term/cursor.lua
index ebd81ed..b7d09cd 100644
--- a/term/cursor.lua
+++ b/term/cursor.lua
@@ -21,11 +21,11 @@
21local term = require 'term.core' 21local term = require 'term.core'
22 22
23return { 23return {
24 goto = term.maketermfunc '%d;%dH', 24 ['goto'] = term.maketermfunc '%d;%dH',
25 goup = term.maketermfunc '%d;A', 25 goup = term.maketermfunc '%d;A',
26 godown = term.maketermfunc '%d;B', 26 godown = term.maketermfunc '%d;B',
27 goright = term.maketermfunc '%d;C', 27 goright = term.maketermfunc '%d;C',
28 goleft = term.maketermfunc '%d;D', 28 goleft = term.maketermfunc '%d;D',
29 save = term.maketermfunc 's', 29 save = term.maketermfunc 's',
30 restore = term.maketermfunc 'u', 30 restore = term.maketermfunc 'u',
31} 31}