From 2f695e9f3148e2a7489a40ed4d470c77028afd3d Mon Sep 17 00:00:00 2001 From: Hauke D Date: Sat, 29 Sep 2018 17:50:03 +0300 Subject: [PATCH] A bit of research on xterm.js for input --- experiments/xterm.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/experiments/xterm.html b/experiments/xterm.html index 5968f43..5a9b516 100644 --- a/experiments/xterm.html +++ b/experiments/xterm.html @@ -27,7 +27,10 @@ use strict; use Term::ANSIColor qw/colored/; print colored("Hello, Color World!\n", 'black on_yellow'); -#TODO: how to best accept input from XTerm? + +# Possible To-Do for Later: can we accept input from XTerm? +# might not be so easy: https://github.com/xtermjs/xterm.js/issues/1546#issuecomment-402547923 +# (keypresses are events, but reading from STDIN is normally blocking...)