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
3636 } ) ;
3737 }
3838
39+ if ( config . request === "attach" && ! config . processId ) {
40+ config . processId = "${command:PickProcess}" ;
41+ }
42+
3943 return config ;
4044 }
4145}
Original file line number Diff line number Diff line change @@ -713,7 +713,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
713713 ) ;
714714 const list = await api . getJobs ( system ) . then ( convert ) ;
715715 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 } .` , {
717717 modal : true ,
718718 } ) ;
719719 return ;
You can’t perform that action at this time.
0 commit comments