FabianLauer / vs-code-xml-format

Simple XML formatter for Visual Studio Code.
https://marketplace.visualstudio.com/items/fabianlauer.vs-code-xml-format
MIT License
7 stars 5 forks source link

Use the format contribution API #1

Closed aeschli closed 8 years ago

aeschli commented 8 years ago

Instead of adding a new commend, better add yourself as a formatter provider

vscode.languages.registerDocumentFormattingEditProvider('xml', ...)
vscode.languages.registerDocumentRangeFormattingEditProvider('xml', ...)

Yes then get invoked on the built-in Format command.

You can have a look at my css formatter extension: https://github.com/aeschli/vscode-css-formatter/

FabianLauer commented 8 years ago

Thanks for the hint 👍 Added.