File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 413
413
{
414
414
"category" : " ObjectScript" ,
415
415
"command" : " vscode-objectscript.studio.actions" ,
416
- "title" : " Studio actions "
416
+ "title" : " Studio Actions "
417
417
},
418
418
{
419
419
"category" : " ObjectScript" ,
420
420
"command" : " vscode-objectscript.studio.contextActions" ,
421
- "title" : " Studio context actions "
421
+ "title" : " Studio Context Actions "
422
422
}
423
423
],
424
424
"keybindings" : [
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ class StudioActions {
156
156
const filetype = splitClassname [ splitClassname . length - 1 ] ;
157
157
const isCorrectMethod = ( text : string ) => ( filetype === "cls" )
158
158
? text . match ( "Method " + method )
159
- : text . startsWith ( method )
159
+ : text . startsWith ( method ) ;
160
160
161
161
const uri = DocumentContentProvider . getUri ( classname ) ;
162
162
vscode . window . showTextDocument ( uri , { "preview" : false } ) . then ( newEditor => {
@@ -331,7 +331,7 @@ class StudioActions {
331
331
// Save all documents
332
332
if ( bitString . charAt ( 2 ) === "1" ) {
333
333
for ( const document of vscode . workspace . textDocuments ) {
334
- await saveAndCompile ( document )
334
+ await saveAndCompile ( document ) ;
335
335
}
336
336
}
337
337
}
@@ -380,7 +380,7 @@ function getOtherStudioActionLabel(action: OtherStudioAction): string {
380
380
case OtherStudioAction . ConnectedToNewNamespace :
381
381
label = "Changed Namespace" ;
382
382
case OtherStudioAction . FirstTimeDocumentSave :
383
- label = "Saved Document to Server for the First Time"
383
+ label = "Saved Document to Server for the First Time" ;
384
384
}
385
385
return label ;
386
386
}
You can’t perform that action at this time.
0 commit comments