Open
Description
This is a very minor issue.
If we define the following in the REPL
object Foo { val `1 ?` = () }
and we type:
Foo.<tab>
then "1 ?" is suggested as an option.
If we type:
Foo.1<tab>
then this autocompletes to
Foo.1 ?
which isn't valid, so ought to complete to
Foo.`1 ?`
Interestingly,
Foo.`<tab>
will suggest all members of Foo correctly, though (for example),
Foo.`c<tab>
appears to search the global namespace, offering suggestions such as classOf, clone, com and collection.