Skip to content

Commit

Permalink
Fix restart command mismatch in vscode extension
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed May 26, 2024
1 parent 198811b commit 8fd08ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/vscode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function activate(context: vscode.ExtensionContext) {
console.log('Congratulations, your extension "vscode-veryl" is now active!');

context.subscriptions.push(
commands.registerCommand("vscode-veryl.restartVerylLs", () => {
commands.registerCommand("vscode-veryl.restartServer", () => {
stopServer().then(function () {startServer(context);}, startServer);
})
);
Expand Down

0 comments on commit 8fd08ee

Please sign in to comment.