Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor LSP Server to allow for mocking out I/O bits #20

Closed
2 changes: 1 addition & 1 deletion client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ function handleDidChangeActiveEditor(editor? : vscode.TextEditor) {
export function activate(context: ExtensionContext) {
// The server is implemented in node
const serverModule = context.asAbsolutePath(
path.join('server', 'out', 'server.js')
path.join('server', 'out', 'main.js')
);

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