1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-20 11:03:06 -04:00

added tab support to the terminal emulator

This commit is contained in:
XeonSquared 2020-03-25 07:08:17 +11:00
parent fab605ff21
commit eccc80ad16

View File

@ -31,6 +31,8 @@ function vt100emu(gpu) -- takes GPU component proxy *gpu* and returns a function
cx = 1
elseif cc == "\27" then -- escape
mode = "e"
elseif cc == "\t" then
cx = 8*((cx+9)//8)
elseif string.byte(cc) > 31 and string.byte(cc) < 127 then -- printable, I guess
gpu.set(cx, cy, cc)
cx = cx + 1