Skip to content

Commit 168fe24

Browse files
committed
Capitalization
1 parent e2cb78a commit 168fe24

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@
6161
],
6262
"view/title": [
6363
{
64-
"command": "cquery.closeinheritanceHierarchy",
64+
"command": "cquery.closeInheritanceHierarchy",
6565
"when": "view == cquery.inheritanceHierarchy",
6666
"group": "navigation"
6767
},
6868
{
69-
"command": "cquery.closecallHierarchy",
69+
"command": "cquery.closeCallHierarchy",
7070
"when": "view == cquery.callHierarchy",
7171
"group": "navigation"
7272
}
@@ -79,11 +79,11 @@
7979
],
8080
"commandPalette": [
8181
{
82-
"command": "cquery.closeinheritanceHierarchy",
82+
"command": "cquery.closeInheritanceHierarchy",
8383
"when": "false"
8484
},
8585
{
86-
"command": "cquery.closecallHierarchy",
86+
"command": "cquery.closeCallHierarchy",
8787
"when": "false"
8888
},
8989
{
@@ -105,7 +105,7 @@
105105
},
106106
{
107107
"title": "Close",
108-
"command": "cquery.closeinheritanceHierarchy"
108+
"command": "cquery.closeInheritanceHierarchy"
109109
},
110110
{
111111
"title": "Call Hierarchy",
@@ -114,7 +114,7 @@
114114
},
115115
{
116116
"title": "Close",
117-
"command": "cquery.closecallHierarchy"
117+
"command": "cquery.closeCallHierarchy"
118118
},
119119
{
120120
"title": "Show Variables",

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ export function activate(context: ExtensionContext) {
567567
});
568568
})
569569
});
570-
commands.registerCommand('cquery.closeinheritanceHierarchy', () => {
570+
commands.registerCommand('cquery.closeInheritanceHierarchy', () => {
571571
setContext('extension.cquery.inheritanceHierarchyVisible', false);
572572
inheritanceHierarchyProvider.root = undefined;
573573
inheritanceHierarchyProvider.onDidChangeEmitter.fire();
@@ -608,7 +608,7 @@ export function activate(context: ExtensionContext) {
608608
callHierarchyProvider.onDidChangeEmitter.fire();
609609
});
610610
});
611-
commands.registerCommand('cquery.closecallHierarchy', (e) => {
611+
commands.registerCommand('cquery.closeCallHierarchy', (e) => {
612612
setContext('extension.cquery.callHierarchyVisible', false);
613613
callHierarchyProvider.root = undefined;
614614
callHierarchyProvider.onDidChangeEmitter.fire();

0 commit comments

Comments
 (0)