Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit 1072823

Browse files
author
Rusty Key
committed
use merlin-lsp for all projects
1 parent 4637b8a commit 1072823

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/client/index.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,8 @@ class ErrorHandler {
3636
}
3737

3838
export async function launch(context: vscode.ExtensionContext): Promise<void> {
39-
if (await isEsyProject()) {
40-
return launchMerlinLsp(context, true);
41-
} else {
42-
return launchOCamlLanguageServer(context);
43-
}
39+
const isEasyProject = await isEsyProject();
40+
return launchMerlinLsp(context, isEasyProject);
4441
}
4542

4643
async function isEsyProject() {

0 commit comments

Comments
 (0)