Closed
Description
I tried 2.13.0, and hit this bug (since fixed).
I also found we needed to disable automatic insertion of " " after completion:
getCompletionHandler match {
case clch: CandidateListCompletionHandler =>
// Without this, `"".toChar<TAB>` expands to ``"".toCharArray <CURSOR>` in JLine 2.13
clch.setPrintSpaceAfterFullCompletion(false)
// New in JLine 2.13, completion results can be ANSI decorated, but will be stripped before being entered into the buffer
// Turning this on to foster experimentation!
clch.setStripAnsi(true)
case _ =>
}