aboutsummaryrefslogtreecommitdiff
path: root/term
diff options
context:
space:
mode:
authorEdouard Delasalles <ed.delasalles@gmail.com>2016-07-19 17:11:33 +0200
committerGitHub <noreply@github.com>2016-07-19 17:11:33 +0200
commit21f2673d8adb7f60ecdba7be24404ba45cf86de1 (patch)
tree8529273e15828030474c02d7e0fbad3247deebdb /term
parent3950eb1b019dbcde7a3d94a69fa2ba51d632353f (diff)
downloadlua-term-21f2673d8adb7f60ecdba7be24404ba45cf86de1.tar.gz
lua-term-21f2673d8adb7f60ecdba7be24404ba45cf86de1.tar.bz2
lua-term-21f2673d8adb7f60ecdba7be24404ba45cf86de1.zip
Update cursor.lua
Diffstat (limited to 'term')
-rw-r--r--term/cursor.lua8
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
23local cursor = { 23local 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}