Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Empty handler for initialized notification #384

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/typescript-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1324,6 +1324,16 @@ export class TypeScriptService {
.startWith({ op: 'add', path: '', value: { changes: {} } as WorkspaceEdit } as Operation)
}

/**
* The initialized notification is sent from the client to the server after the client received
* the result of the initialize request but before the client is sending any other request or
* notification to the server. The server can use the initialized notification for example to
* dynamically register capabilities.
*/
public async initialized(): Promise<void> {
// nop
}

/**
* The document open notification is sent from the client to the server to signal newly opened
* text documents. The document's truth is now managed by the client and the server must not try
Expand Down