File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ export class ObjectScriptConfigurationProvider implements DebugConfigurationProv
36
36
} ) ;
37
37
}
38
38
39
+ if ( config . request === "attach" && ! config . processId ) {
40
+ config . processId = "${command:PickProcess}" ;
41
+ }
42
+
39
43
return config ;
40
44
}
41
45
}
Original file line number Diff line number Diff line change @@ -713,7 +713,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
713
713
) ;
714
714
const list = await api . getJobs ( system ) . then ( convert ) ;
715
715
if ( ! list . length ) {
716
- vscode . window . showInformationMessage ( " No process found to attach to" , {
716
+ vscode . window . showInformationMessage ( ` No attachable processes are running in ${ api . ns } .` , {
717
717
modal : true ,
718
718
} ) ;
719
719
return ;
You can’t perform that action at this time.
0 commit comments