Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DaelonSuzuka committed Nov 18, 2024
1 parent 68dc413 commit 3a1789b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/lsp/ClientConnectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class ClientConnectionManager {

constructor(private context: vscode.ExtensionContext) {
this.client = new GDScriptLanguageClient();
this.client.events.on('status', this.on_client_status_changed.bind(this));
this.client.events.on("status", this.on_client_status_changed.bind(this));

setInterval(() => {
this.retry_callback();
Expand Down
1 change: 1 addition & 0 deletions src/lsp/GDScriptLanguageClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export enum TargetLSP {
export type Target = {
host: string;
port: number;
type: TargetLSP;
};

type HoverResult = {
Expand Down

0 comments on commit 3a1789b

Please sign in to comment.