Disable jline expansion

This commit is contained in:
aNNiMON 2024-01-29 18:38:51 +02:00
parent f1772746cc
commit 03d890df7c
2 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@ ext {
snakeyaml: '1.20', // org.yaml:snakeyaml
okhttp: '3.8.1', // com.squareup.okhttp3:okhttp
socket: '1.0.2', // io.socket:socket.io-client
jline: '2.14.5', // jline:jline
jline: '2.14.6', // jline:jline
javalin: '5.6.3', // io.javalin:javalin
slf4j: '2.0.9', // org.slf4j:slf4j-simple

View File

@ -9,6 +9,7 @@ public class JLineConsole implements ReplConsole {
private final ConsoleReader console;
public JLineConsole() throws IOException {
System.setProperty(ConsoleReader.JLINE_EXPAND_EVENTS, "false");
console = new ConsoleReader();
}