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.
1 parent dc4ad51 commit ed4ae72Copy full SHA for ed4ae72
repl/src/dotty/tools/repl/ReplDriver.scala
@@ -317,7 +317,7 @@ class ReplDriver(settings: Array[String],
317
318
/** Extract possible completions at the index of `cursor` in `expr` */
319
protected final def completions(cursor: Int, expr: String, state0: State): List[Completion] =
320
- if expr.startsWith(":") then
+ if expr.startsWith("::") then
321
ParseResult.commands.collect {
322
case command if command._1.startsWith(expr) => Completion(command._1, "", List())
323
}
0 commit comments