File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1616 "name" : " Attach to Language-Server" ,
1717 "address" : " localhost" ,
1818 "protocol" : " inspector" ,
19- "port" : 6009 ,
19+ "port" : 6010 ,
2020 "smartStep" : true ,
2121 "sourceMaps" : true ,
2222 },
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ let client: LanguageClient;
99export async function initLanguageServer ( context : vscode . ExtensionContext ) {
1010 const serverModule = context . asAbsolutePath ( path . join ( "dist" , "server-node.js" ) ) ;
1111
12- const debugOptions = { execArgv : [ "--nolazy" , "--inspect=6009" ] } ;
12+ // 6009 is used by redhat yaml extension
13+ const debugOptions = { execArgv : [ "--nolazy" , "--inspect=6010" ] } ;
1314
1415 const serverOptions : ServerOptions = {
1516 run : { module : serverModule , transport : TransportKind . ipc } ,
You can’t perform that action at this time.
0 commit comments