Skip to content

Commit 320ee8d

Browse files
authored
Update extension.ts
add payment menu option
1 parent 37b4f45 commit 320ee8d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/extension.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,12 @@ export async function activate(context: vscode.ExtensionContext, service?: Claud
216216
// Register cleanup on deactivation
217217
context.subscriptions.push(new vscode.Disposable(WatchdogManager.stop));
218218

219+
context.subscriptions.push(
220+
vscode.commands.registerCommand('claude-vscode.support', () => {
221+
vscode.env.openExternal(vscode.Uri.parse('https://buy.stripe.com/aEUcQc7Cb3VE22I3cc'));
222+
})
223+
);
224+
219225
// Register commands
220226
const commands = [
221227
vscode.commands.registerCommand(
@@ -276,4 +282,4 @@ export async function deactivate() {
276282
} finally {
277283
isDeactivating = false;
278284
}
279-
}
285+
}

0 commit comments

Comments
 (0)