Preserve old showEmmetcommands ID #58600

This commit is contained in:
Raymond Zhao 2020-11-17 23:27:24 +00:00 committed by GitHub
parent 33e7e030d2
commit e7ce16ceb0
2 changed files with 2 additions and 2 deletions

View file

@ -344,7 +344,7 @@
"category": "Emmet"
},
{
"command": "editor.emmet.action.showEmmetCommands",
"command": "workbench.action.showEmmetCommands",
"title": "%command.showEmmetCommands%",
"category": ""
}

View file

@ -124,7 +124,7 @@ export function activateEmmetExtension(context: vscode.ExtensionContext) {
return reflectCssValue();
}));
context.subscriptions.push(vscode.commands.registerCommand('editor.emmet.action.showEmmetCommands', () => {
context.subscriptions.push(vscode.commands.registerCommand('workbench.action.showEmmetCommands', () => {
vscode.commands.executeCommand('workbench.action.quickOpen', '>Emmet: ');
}));