hi folks, I'm using JLine in an application to rea...
# community-support
m
hi folks, I'm using JLine in an application to read user input. I can make it Gradle-friendly by adding:
Copy code
tasks.named<JavaExec>("run") {
    standardInput = System.`in`
}
to my build script, and using
--console=plain
to avoid scrambled outputs. It kind of works, however it breaks whenever I press key up or down to search in history. Has anyone found a workaround for this?
e
JLine probably needs access to the real tty, and I don't think there's any way of passing that in