Re: [Factor-talk] Handling keyboard input

2023-03-21 Thread Jon Harper
Hi, in terminals, the application interacts with text streams (0 stdin, 1 stdout, 2 stderr, and optionally others with higher numbers) so all you can get is text (including control characters). You can find documentation here https://docs.factorcode.org/content/article-streams.html . You should b

[Factor-talk] Handling keyboard input

2023-03-20 Thread Cleverson Casarin Uliana
Hi, Have you implemented keyboard handling in a terminal like the Windows command prompt? In the factor library, there is e.g. extra/key-handlers, but it seems quite sparse. In Rosetta Code there is no related tasks implemented as well; see for example the Keyboard Input related tasks at: ht