Modifying last command incorrectly autocompletes when using a subsequence #338
Comments
looks like I forgot that |
That was ridiculously quick. Many thanks for your great work @lihaoyi |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
System
Steps to reproduce
println("foo")
.foo
is printed out as expected.println("fo")
println("foo")
andfoo
is printed out instead offo
.This affects numbers as well e.g.
println(100)
.100
is printed out as expected.println(10)
println(100)
and100
is printed out instead of10
.Notes
println("foo")
followed by manually typingprintln("fo")
works as expected.foo
tobar
or100
to200
will behave as expected.The text was updated successfully, but these errors were encountered: