Skip to content

Commit

Permalink
Add "language-server" flag to LS invocations [HEAD-694] (#148)
Browse files Browse the repository at this point in the history
add "language-server" flag to LS invocations
  • Loading branch information
Asaf Agami authored Sep 11, 2023
1 parent d62b56e commit 52de1f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void start() throws IOException {
}
}

List<String> commands = Lists.of(Preferences.getInstance().getLsBinary(), "-l", "info", "-f",
List<String> commands = Lists.of(Preferences.getInstance().getLsBinary(), "language-server", "-l", "info", "-f",
new File(Preferences.getInstance().getLsBinary()).getParent() + File.separator + "snyk-ls.log");
String workingDir = SystemUtils.USER_DIR;
setCommands(commands);
Expand Down

0 comments on commit 52de1f7

Please sign in to comment.