Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Sep 19, 2023
1 parent e90382f commit f5eb54c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"contributes": {
"commands": [
{
"command": "intuita.globalConfigSettings",
"title": "Configure global settings",
"command": "intuita.showIntuitaSettings",
"title": "Configure Intuita settings",
"icon": "$(settings-gear)"
},
{
Expand Down Expand Up @@ -166,7 +166,7 @@
"menus": {
"view/title": [
{
"command": "intuita.globalConfigSettings",
"command": "intuita.showIntuitaSettings",
"when": "view == intuitaMainView",
"group": "navigation"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export async function activate(context: vscode.ExtensionContext) {
);

context.subscriptions.push(
vscode.commands.registerCommand('intuita.globalConfigSettings', () => {
vscode.commands.registerCommand('intuita.showIntuitaSettings', () => {
vscode.commands.executeCommand(
'workbench.action.openSettings',
'Intuita',
Expand Down

0 comments on commit f5eb54c

Please sign in to comment.