Skip to content

Commit

Permalink
Fix for #95 in extension.js. package version updated to 2.3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinX authored and dhuebner committed Feb 10, 2025
1 parent d13ad2b commit 92b798d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,12 @@ function getStdioLanguageClient(clientId: {id: string, name: string}, clientOpti
// Otherwise the run options are used
const serverOptions: ServerOptions = {
run: {
command: serverModule
command: serverModule,
options: (os.platform() === 'win32') ? {shell: true} : {}
},
debug: {
command: serverModule,
options: (os.platform() === 'win32') ? {shell: true} : {},
args: ['-Xdebug', '-Xnoagent', '-Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n,quiet=y', '-Xmx256m']
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "yang-vscode",
"displayName": "Yangster",
"description": "YANG editor support and diagrams for VS Code",
"version": "2.3.3",
"version": "2.3.4",
"publisher": "typefox",
"license": "Apache-2.0",
"icon": "images/yin_yang.png",
Expand Down

0 comments on commit 92b798d

Please sign in to comment.