forked from external/vscode-xml
Debug Configs
This commit is contained in:
parent
704f6c9a36
commit
30e8222717
4 changed files with 49 additions and 1 deletions
|
|
@ -1,7 +1,12 @@
|
|||
'use strict';
|
||||
|
||||
import { ExtensionContext } from 'vscode';
|
||||
import { commands, ExtensionContext } from 'vscode';
|
||||
import { formatXml } from './features/xmlFormatting';
|
||||
|
||||
export function activate(ctx: ExtensionContext) {
|
||||
// check for update
|
||||
//...
|
||||
|
||||
// register pallete commands
|
||||
ctx.subscriptions.push(commands.registerTextEditorCommand('xmltools.formatXml', formatXml));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue