You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When editing Java in Visual Studio Code, import directives are shown with the package names in blue as if they were keywords. They should be shown in black because they are identifiers.
The Java tokenizer marks the import identifiers with the scope storage.modifier. It does the same for modifiers like private and public which we want to be marked as keywords.
From @dgolub on February 12, 2016 22:22
When editing Java in Visual Studio Code, import directives are shown with the package names in blue as if they were keywords. They should be shown in black because they are identifiers.
Copied from original issue: microsoft/vscode#2987
The text was updated successfully, but these errors were encountered: