summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Hoelz <rob@hoelz.ro>2023-06-11 07:48:16 -0500
committerGitHub <noreply@github.com>2023-06-11 07:48:16 -0500
commitf6cf6e63c2394232f34d2fca1e4b08c8feb18942 (patch)
treeff4a73403f93442579c421705b382c6d6c559c1a
parent375fa065efc9a95b289371cf0eb7bf8b3be0bc9c (diff)
parent21f2673d8adb7f60ecdba7be24404ba45cf86de1 (diff)
downloadlua-term-f6cf6e63c2394232f34d2fca1e4b08c8feb18942.tar.gz
lua-term-f6cf6e63c2394232f34d2fca1e4b08c8feb18942.tar.bz2
lua-term-f6cf6e63c2394232f34d2fca1e4b08c8feb18942.zip
Merge pull request #19 from edouardelasalles/patch-1
Update cursor.lua
-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}