Implement client-side of SnippetTextEdit

This commit is contained in:
Aleksey Kladov 2020-05-18 01:53:55 +02:00
parent 2bf6b16a7f
commit 3dd68c1ba3
3 changed files with 81 additions and 2 deletions

View file

@ -91,6 +91,7 @@ export async function activate(context: vscode.ExtensionContext) {
ctx.registerCommand('debugSingle', commands.debugSingle);
ctx.registerCommand('showReferences', commands.showReferences);
ctx.registerCommand('applySourceChange', commands.applySourceChange);
ctx.registerCommand('applySnippetWorkspaceEdit', commands.applySnippetWorkspaceEdit);
ctx.registerCommand('selectAndApplySourceChange', commands.selectAndApplySourceChange);
ctx.pushCleanup(activateTaskProvider(workspaceFolder));