File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 61
61
],
62
62
"view/title" : [
63
63
{
64
- "command" : " cquery.closeinheritanceHierarchy " ,
64
+ "command" : " cquery.closeInheritanceHierarchy " ,
65
65
"when" : " view == cquery.inheritanceHierarchy" ,
66
66
"group" : " navigation"
67
67
},
68
68
{
69
- "command" : " cquery.closecallHierarchy " ,
69
+ "command" : " cquery.closeCallHierarchy " ,
70
70
"when" : " view == cquery.callHierarchy" ,
71
71
"group" : " navigation"
72
72
}
79
79
],
80
80
"commandPalette" : [
81
81
{
82
- "command" : " cquery.closeinheritanceHierarchy " ,
82
+ "command" : " cquery.closeInheritanceHierarchy " ,
83
83
"when" : " false"
84
84
},
85
85
{
86
- "command" : " cquery.closecallHierarchy " ,
86
+ "command" : " cquery.closeCallHierarchy " ,
87
87
"when" : " false"
88
88
},
89
89
{
105
105
},
106
106
{
107
107
"title" : " Close" ,
108
- "command" : " cquery.closeinheritanceHierarchy "
108
+ "command" : " cquery.closeInheritanceHierarchy "
109
109
},
110
110
{
111
111
"title" : " Call Hierarchy" ,
114
114
},
115
115
{
116
116
"title" : " Close" ,
117
- "command" : " cquery.closecallHierarchy "
117
+ "command" : " cquery.closeCallHierarchy "
118
118
},
119
119
{
120
120
"title" : " Show Variables" ,
Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ export function activate(context: ExtensionContext) {
567
567
} ) ;
568
568
} )
569
569
} ) ;
570
- commands . registerCommand ( 'cquery.closeinheritanceHierarchy ' , ( ) => {
570
+ commands . registerCommand ( 'cquery.closeInheritanceHierarchy ' , ( ) => {
571
571
setContext ( 'extension.cquery.inheritanceHierarchyVisible' , false ) ;
572
572
inheritanceHierarchyProvider . root = undefined ;
573
573
inheritanceHierarchyProvider . onDidChangeEmitter . fire ( ) ;
@@ -608,7 +608,7 @@ export function activate(context: ExtensionContext) {
608
608
callHierarchyProvider . onDidChangeEmitter . fire ( ) ;
609
609
} ) ;
610
610
} ) ;
611
- commands . registerCommand ( 'cquery.closecallHierarchy ' , ( e ) => {
611
+ commands . registerCommand ( 'cquery.closeCallHierarchy ' , ( e ) => {
612
612
setContext ( 'extension.cquery.callHierarchyVisible' , false ) ;
613
613
callHierarchyProvider . root = undefined ;
614
614
callHierarchyProvider . onDidChangeEmitter . fire ( ) ;
You can’t perform that action at this time.
0 commit comments