mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 04:23:32 +01:00
This reverts commit ffacef4727.
This commit is contained in:
@@ -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();
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user