Skip to content

Commit

Permalink
Hook up fql-analyzer to FSL files
Browse files Browse the repository at this point in the history
  • Loading branch information
macmv committed Sep 7, 2023
1 parent 809e0f2 commit f874c6a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/LanguageServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ export class LanguageService implements ConfigurationChangeSubscription {
scheme: "file",
language: "fql",
},
{
scheme: "file",
language: "fsl",
},
{
scheme: "untitled",
language: "fql",
Expand All @@ -82,14 +86,14 @@ export class LanguageService implements ConfigurationChangeSubscription {
// Notify the server about file changes to '.clientrc files contained in the workspace
fileEvents: vscode.workspace.createFileSystemWatcher("**/.clientrc"),
},
outputChannel: vscode.window.createOutputChannel("FQL Language Server"),
outputChannel: vscode.window.createOutputChannel("FQL Analyzer Log"),
revealOutputChannelOn: RevealOutputChannelOn.Info,
};

// Create the language client and start the client.
this.client = new LanguageClient(
"fql",
"FQL",
"fql-analyzer",
"FQL Analyzer",
serverOptions,
clientOptions,
);
Expand Down

0 comments on commit f874c6a

Please sign in to comment.