From 335562880c55267fc30966579ea86d75e4b80487 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Tue, 4 Oct 2016 21:18:46 -0700 Subject: [PATCH] remove raf to print the chars to the screen as soon as possible --- lib/components/term.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/components/term.js b/lib/components/term.js index e2e38c55..31bc7047 100644 --- a/lib/components/term.js +++ b/lib/components/term.js @@ -111,9 +111,7 @@ export default class Term extends Component { } write(data) { - requestAnimationFrame(() => { - this.term.io.writeUTF8(data); - }); + this.term.io.writeUTF8(data); } focus() {