Skip to content

"override" is not autocompleted #36

@ryi3r

Description

@ryi3r

For example, let's say we have code like this:

public abstract class ClassA
{
    public abstract void MyMethod();
}

public class ClassB : ClassA
{
    // if you try to type this, you'll get no autocompletion for the keyword itself
    override  // ...
    // if you try to autocomplete the function name it won't autocomplete it
    override MyMe // ...
    // it'll only autocomplete the name if you do
    override public void MyMe // ...
    // the order of override doesn't matter, but it should change the order to "public override" or something similar, such as:
    public override void MyMethod()
    {
        
    }
}

This behavior I'm describing is present in vscode. (through the C# extension)

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions