From 21f2673d8adb7f60ecdba7be24404ba45cf86de1 Mon Sep 17 00:00:00 2001 From: Edouard Delasalles Date: Tue, 19 Jul 2016 17:11:33 +0200 Subject: Update cursor.lua --- term/cursor.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'term') 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' local cursor = { ['goto'] = term.maketermfunc '%d;%dH', - goup = term.maketermfunc '%d;A', - godown = term.maketermfunc '%d;B', - goright = term.maketermfunc '%d;C', - goleft = term.maketermfunc '%d;D', + goup = term.maketermfunc '%dA', + godown = term.maketermfunc '%dB', + goright = term.maketermfunc '%dC', + goleft = term.maketermfunc '%dD', save = term.maketermfunc 's', restore = term.maketermfunc 'u', } -- cgit v1.2.3-55-g6feb