From ea434f8432f6eb3e9669ea7bcbcfa3a4dbbfc761 Mon Sep 17 00:00:00 2001 From: Hans Unzner Date: Mon, 26 Jun 2023 18:54:52 +0200 Subject: [PATCH] Remove link to marketplace, update name in utis.ts --- README.md | 4 ---- src/utils.ts | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index aaa164fa..8e2ccca5 100644 --- a/README.md +++ b/README.md @@ -168,10 +168,6 @@ This extension contributes the following commands: Detailed Release Notes are available [here](CHANGELOG.md). -## Visual Studio Marketplace - -This extension is available on the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=hansu.git-graph) for Visual Studio Code. - ## Acknowledgements Thank you to all of the contributors that help with the development of Git Graph! diff --git a/src/utils.ts b/src/utils.ts index 68e38137..566f0c1f 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -343,7 +343,7 @@ export function createPullRequest(config: PullRequestConfig, sourceOwner: string * @returns A promise resolving to the ErrorInfo of the executed command. */ export function openExtensionSettings(): Thenable { - return vscode.commands.executeCommand('workbench.action.openSettings', '@ext:hansu.git-graph').then( + return vscode.commands.executeCommand('workbench.action.openSettings', '@ext:hansu.git-graph-2').then( () => null, () => 'Visual Studio Code was unable to open the Git Graph Extension Settings.' );