File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change 23062306 "pipeTransport" : {
23072307 "description" : " %generateOptionsSchema.pipeTransport.description%" ,
23082308 "type" : " object" ,
2309- "required" : [
2310- " debuggerPath"
2311- ],
23122309 "default" : {
23132310 "pipeCwd" : " ${workspaceFolder}" ,
23142311 "pipeProgram" : " enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'" ,
28382835 "pipeTransport" : {
28392836 "description" : " %generateOptionsSchema.pipeTransport.description%" ,
28402837 "type" : " object" ,
2841- "required" : [
2842- " debuggerPath"
2843- ],
28442838 "default" : {
28452839 "pipeCwd" : " ${workspaceFolder}" ,
28462840 "pipeProgram" : " enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'" ,
36463640 "pipeTransport" : {
36473641 "description" : " %generateOptionsSchema.pipeTransport.description%" ,
36483642 "type" : " object" ,
3649- "required" : [
3650- " debuggerPath"
3651- ],
36523643 "default" : {
36533644 "pipeCwd" : " ${workspaceFolder}" ,
36543645 "pipeProgram" : " enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'" ,
41784169 "pipeTransport" : {
41794170 "description" : " %generateOptionsSchema.pipeTransport.description%" ,
41804171 "type" : " object" ,
4181- "required" : [
4182- " debuggerPath"
4183- ],
41844172 "default" : {
41854173 "pipeCwd" : " ${workspaceFolder}" ,
41864174 "pipeProgram" : " enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'" ,
Original file line number Diff line number Diff line change @@ -314,6 +314,8 @@ export class DebugAdapterExecutableFactory implements vscode.DebugAdapterDescrip
314314 }
315315 if ( pipeTransport . debuggerArgs ) {
316316 args = pipeTransport . debuggerArgs ;
317+ } else {
318+ args . push ( '--interpreter=vscode' , '--' ) ;
317319 }
318320 if ( pipeTransport . pipeProgram ) {
319321 args . push ( pipeTransport . pipeProgram ) ;
You can’t perform that action at this time.
0 commit comments