-
Notifications
You must be signed in to change notification settings - Fork 898
Open
Description
Hello,
I work on language client/server implementation in VS code.
I base my work on Language Server Extension Guide. Thanks for this good tutorial.
Unfortunately, I cannot find any documentation about some available settings. Please can you help me to find possible client and server options that we can define in pieces of code in Explaining the 'Language Client'
Here are the 2 code extracts where I need to find possible options:
let serverOptions: ServerOptions = {
run: { module: serverModule, transport: TransportKind.ipc },
debug: {
module: serverModule,
transport: TransportKind.ipc,
options: debugOptions
}
};
// Options to control the language client
let clientOptions: LanguageClientOptions = {
// Register the server for plain text documents
documentSelector: [{ scheme: 'file', language: 'plaintext' }],
synchronize: {
// Notify the server about file changes to '.clientrc files contained in the workspace
fileEvents: workspace.createFileSystemWatcher('**/.clientrc')
}
};
Thanks in advance for your help.
Metadata
Metadata
Assignees
Labels
No labels