We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 89b872c + 0a158e4 commit 6579cfaCopy full SHA for 6579cfa
src/extension.ts
@@ -55,7 +55,10 @@ export function activate(context: vscode.ExtensionContext) {
55
);
56
context.subscriptions.push(
57
vscode.commands.registerCommand(`${extensionId}.addServer`, async () => {
58
- await addServer();
+ const name = await addServer();
59
+ if (name) {
60
+ await view.addToRecents(name);
61
+ }
62
})
63
64
0 commit comments