Revert "Fix #58600, Format Emmet package.json (#110891)"

This reverts commit ffacef4727.
This commit is contained in:
Raymond Zhao
2020-11-23 09:02:15 -08:00
parent 40a902c9cf
commit 4c55c7264f
7 changed files with 544 additions and 517 deletions

View File

@@ -31,14 +31,10 @@ export function activateEmmetExtension(context: vscode.ExtensionContext) {
wrapIndividualLinesWithAbbreviation(args);
}));
context.subscriptions.push(vscode.commands.registerCommand('editor.emmet.action.expandAbbreviationInternal', (args) => {
context.subscriptions.push(vscode.commands.registerCommand('emmet.expandAbbreviation', (args) => {
expandEmmetAbbreviation(args);
}));
context.subscriptions.push(vscode.commands.registerCommand('editor.emmet.action.expandAbbreviation', () => {
vscode.commands.executeCommand('workbench.action.expandEmmetAbbreviation');
}));
context.subscriptions.push(vscode.commands.registerCommand('editor.emmet.action.removeTag', () => {
return removeTag();
}));