Skip to content

Issues with autocompletion of backtick-delimited identifiers in the REPL #6919

Open
@scabug

Description

@scabug

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions