You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/src/main/scala/replpp/JLineTerminal.scala
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,7 @@ class JLineTerminal extends java.io.Closeable {
92
92
.highlighter(newHighlighter)
93
93
.parser(newParser)
94
94
.variable(HISTORY_FILE, s"$userHome/.dotty_history") // Save history to file
95
+
.variable(HISTORY_SIZE, 10000) // MP: adapted here; keep entire history file in memory - default is only 500... see DefaultHistory.DEFAULT_HISTORY_SIZE
95
96
.variable(SECONDARY_PROMPT_PATTERN, "%M") // A short word explaining what is "missing",
96
97
// this is supplied from the EOFError.getMissing() method
97
98
.variable(LIST_MAX, 400) // Ask user when number of completions exceed this limit (default is 100).
0 commit comments