remove raf to print the chars to the screen as soon as possible

This commit is contained in:
Guillermo Rauch 2016-10-04 21:18:46 -07:00
parent d47aa4470a
commit 335562880c

View file

@ -111,9 +111,7 @@ export default class Term extends Component {
}
write(data) {
requestAnimationFrame(() => {
this.term.io.writeUTF8(data);
});
this.term.io.writeUTF8(data);
}
focus() {