Skip to content

Commit

Permalink
update server.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitaS11 authored Aug 6, 2022
1 parent f85de9a commit 0458f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ interface ExampleSettings {
// The global settings, used when the `workspace/configuration` request is not supported by the client.
// Please note that this is not the case when using this server with the client provided in this example
// but could happen with other clients.
const defaultSettings: ExampleSettings = { maxNumberOfProblems: 1000, compiler: { executablePath: "/home/ankita/Documents/Internships/GSI/lpython/src/bin/lpython" } };
const defaultSettings: ExampleSettings = { maxNumberOfProblems: 1000, compiler: { executablePath: "lpython" } };
let globalSettings: ExampleSettings = defaultSettings;

// Cache the settings of all open documents
Expand Down Expand Up @@ -278,4 +278,4 @@ connection.onDidChangeWatchedFiles(_change => {
documents.listen(connection);

// Listen on the connection
connection.listen();
connection.listen();

0 comments on commit 0458f81

Please sign in to comment.