File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 362362 "title" : " CodeQL: Quick Query"
363363 },
364364 {
365- "command" : " codeQL.createSkeletonQuery " ,
365+ "command" : " codeQL.createQuery " ,
366366 "title" : " CodeQL: Create Query"
367367 },
368368 {
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export type LocalQueryCommands = {
9898 "codeQL.quickEvalContextEditor" : ( uri : Uri ) => Promise < void > ;
9999 "codeQL.codeLensQuickEval" : ( uri : Uri , range : Range ) => Promise < void > ;
100100 "codeQL.quickQuery" : ( ) => Promise < void > ;
101- "codeQL.createSkeletonQuery " : ( ) => Promise < void > ;
101+ "codeQL.createQuery " : ( ) => Promise < void > ;
102102} ;
103103
104104export type ResultsViewCommands = {
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ export class LocalQueries extends DisposableObject {
238238 "codeQL.quickEvalContextEditor" : this . quickEval . bind ( this ) ,
239239 "codeQL.codeLensQuickEval" : this . codeLensQuickEval . bind ( this ) ,
240240 "codeQL.quickQuery" : this . quickQuery . bind ( this ) ,
241- "codeQL.createSkeletonQuery " : this . createSkeletonQuery . bind ( this ) ,
241+ "codeQL.createQuery " : this . createSkeletonQuery . bind ( this ) ,
242242 } ;
243243 }
244244
You can’t perform that action at this time.
0 commit comments