alefragnani / vscode-language-pascal

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

Add xml syntax for .dproj, .groupproj and .cbproj #144

Closed viniciusfbb closed 5 months ago

viniciusfbb commented 6 months ago

No other plugin links these 3 extensions to the xml syntax and they are important extensions for Delphi developers who use your extension.

alefragnani commented 6 months ago

Hi @viniciusfbb ,

I'm not sure you are aware of the "files.associations" setting in VS Code. If you add this to your user settings, any delphi/rad studio project file will use the XML syntax hightlighter.

    "files.associations": {
        "*.dproj": "xml",
        "*.groupproj": "xml",
        "*.cbproj": "xml",
    },

I use this setting on my computers, and it works just fine.

Hope this helps

alefragnani commented 5 months ago

I'm closing this PR because no new comments has been added since my last question. Feel free to reopen/comment if you intend to update the PR based on my review.

Thanks for your understanding