text-io icon indicating copy to clipboard operation
text-io copied to clipboard

A library for creating interactive console applications in Java

Results 17 text-io issues
Sort by recently updated
recently updated
newest added

Ubuntu 22.04.3 LTS (minimal server) Linux x64 JRE https://adoptium.net/de/temurin/releases/?version=17 use as portable (extract java archiv and set JAVA_HOME) if we call `final TextIO term = TextIoFactory.getTextIO();` we get the following...

I have added Italian translations for various messages displayed in the console.

How would you do this? I am using println("") but this leads to an issues where the next line of code is not executed so the terminal just lets you...

Hey! I am using the textio library in one of my projects, where I create a terminal using this code: ```java private final TextIO textIO; private final TextTerminal terminal; //......

Hi! How I can minimize a text-io console to the windows/linux system tray? ![image](https://github.com/beryx/text-io/assets/84431015/057673f9-a16b-4903-934c-e88a156cb025)

``` private static Operacao escolherUmaOperacao() { return IO.getTextIO().newEnumInputReader(Operacao.class) .withInvalidIndexErrorMessagesProvider((s, s1, i, i1) -> Collections.singletonList("Opção inválida. Digite um número de " + i + " até " + i1)) .withValueFormatter(Operacao::getNome) .read("Escolha...