alefragnani / vscode-language-pascal

Pascal language extension for Visual Studio Code
MIT License
220 stars 47 forks source link

Add `strict` keyword to highlighting #87

Closed MA-Maddin closed 3 years ago

MA-Maddin commented 3 years ago

The strict visibility specifier is not highlighted.

For example:

type
  TMyClass = class(TControl)
    strict private
      { strict private declarations here }
  end;
alefragnani commented 3 years ago

Hi @MA-Maddin ,

Thanks for reporting. Feel free to open a PR if you like.

You just need to update syntaxes/pascal.tmLanguage, adding the new keyword.

Hope this helps