Skip to content

Commit

Permalink
Fix debug flag breaking in latest VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Shepherd committed Oct 10, 2018
1 parent ae24581 commit 4f7327b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function activate(context: ExtensionContext) {
let serverModule = context.asAbsolutePath(path.join('node_modules', 'yaml-language-server', 'out', 'server', 'src', 'server.js'));

// The debug options for the server
let debugOptions = { execArgv: ["--nolazy", "--debug=6009"] };
let debugOptions = { execArgv: ["--nolazy", "--inspect=6009"] };

// If the extension is launched in debug mode then the debug server options are used
// Otherwise the run options are used
Expand Down

0 comments on commit 4f7327b

Please sign in to comment.