diff options
author | Rob Hoelz <rob@hoelz.ro> | 2023-06-11 07:48:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-11 07:48:16 -0500 |
commit | f6cf6e63c2394232f34d2fca1e4b08c8feb18942 (patch) | |
tree | ff4a73403f93442579c421705b382c6d6c559c1a | |
parent | 375fa065efc9a95b289371cf0eb7bf8b3be0bc9c (diff) | |
parent | 21f2673d8adb7f60ecdba7be24404ba45cf86de1 (diff) | |
download | lua-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.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 | } |