Skip to content

Commit

Permalink
chore: use lsp-vscode (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
magnus-madsen authored Dec 28, 2024
1 parent 84f709f commit 612b164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/engine/flix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export async function start(input: StartEngineInput) {
// TODO split respecting ""
const args = []
args.push(...parseArgs(startEngineInput.userConfiguration.extraJvmArgs))
args.push('-jar', flixFilename, 'lsp', `${port}`)
args.push('-jar', flixFilename, 'lsp-vscode', `${port}`)
args.push(...parseArgs(startEngineInput.userConfiguration.extraFlixArgs))
if (startEngineInput?.userConfiguration.explain.enabled ?? false) {
args.push('--explain')
Expand Down

0 comments on commit 612b164

Please sign in to comment.