akamud / vscode-theme-onedark

VSCode Theme based on Atom's One Dark theme
MIT License
286 stars 196 forks source link

TS Decorators color inconsistency #148

Open Raizerz opened 2 years ago

Raizerz commented 2 years ago

Decorators that are invoked as functions are colored correctly, but simple decorators are not colored.

Sample code

export class ApplicationModel extends BaseModel {

    @AllowNull(false)
    @Unique
    @IsEmail
    @Column
    email: string;

}

Filename and Language selected

Typescript

Atom Original theme Screenshot

2022-05-04 22 31 30

VSCode theme Screenshot

IMAGE 2022-05-04 22_28_35

Versions used

LoganTann commented 2 years ago

Experiencing the same issue :(

even if this is just color, it's a bit triggering, lol

Raizerz commented 1 year ago

Any updates on it?