Interface ILSPOptions

Argument for creating a connection to the LSP proxy server.

interface ILSPOptions {
    capabilities: ClientCapabilities;
    languageId: string;
    rootUri: string;
    serverIdentifier?: string;
    serverUri: string;
}

Hierarchy

  • ILspOptions
    • ILSPOptions

Properties

capabilities: ClientCapabilities

Client capabilities implemented by the client.

languageId: string

Language Id.

rootUri: string

The root URI set by server.

serverIdentifier?: string

Language server id.

serverUri: string

LSP handler endpoint.