We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f758994 + 2024fe8 commit ad02512Copy full SHA for ad02512
compiler/src/dotty/tools/repl/JLineTerminal.scala
@@ -62,6 +62,7 @@ final class JLineTerminal(needsTerminal: Boolean) extends java.io.Closeable {
62
.variable(BLINK_MATCHING_PAREN, 0L) // Don't blink the opening paren after typing a closing paren.
63
.option(INSERT_TAB, true) // At the beginning of the line, insert tab instead of completing.
64
.option(AUTO_FRESH_LINE, true) // if not at start of line before prompt, move to new line.
65
+ .option(DISABLE_EVENT_EXPANSION, true) // don't process escape sequences in input
66
.build()
67
68
lineReader.readLine(prompt)
0 commit comments