vscode-lspconfigA LSP client configuration tool for vscode. vscode-lspconfig is useful for Docker integration or running your own custom LSP. Quickstart
Extension SettingsInclude if your extension adds any VS Code settings through the ServerConfiguration Formatname: stringThe name of the language server. This should be a unique identifier for the server you are configuring. root_patterns: string[]An array of file patterns used to determine whether to start the language server. These patterns help the server identify the project's root, ensuring it only activates in the appropriate context. document_selector: DocumentSelector | string[]A document selector defines the scope of documents the language server will be active on. This can be specified as an array of languages or more complex DocumentSelector objects. command: string[]An array of strings that represent the command to start the language server. This can include the server's executable and any necessary arguments. Examples
|