Handle tab in serial terminal

This commit is contained in:
copy 2016-08-01 22:27:15 +02:00
parent 16101d1cc5
commit 0883ec83b5

View file

@ -128,6 +128,12 @@ function SerialAdapter(element, bus)
serial.send_char(127);
e.preventDefault();
}
else if(chr === 9)
{
// tab
serial.send_char(9);
e.preventDefault();
}
}
function paste_handler(e)