csharp-language-server-protocol
csharp-language-server-protocol copied to clipboard
Language Server Protocol in C#
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [nuke.globaltool](https://nuke.build/) ([source](https://togithub.com/nuke-build/nuke)) | `7.0.6` -> `8.0.0` |...
This library looks like an incredible project, so first off, thank you! I was trying to get up and running with a vs-code extension client for the server, and following...
- https://github.com/badges/shields/issues/8671
In [specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#fileRename): ```typescript export interface FileRename { oldUri: string; newUri: string; } ``` In [protocol implementation](https://github.com/OmniSharp/csharp-language-server-protocol/blob/master/src/Protocol/Features/FileOperationsFeature.cs#L111): ```csharp public abstract record FileOperationItem { public Uri Uri { get; init; } =...
Hi there, My [language server](https://github.com/dev-cycles/contextive) recently started getting used with a language client ([neovim lsp](https://neovim.io/doc/user/lsp.html)) that provides the following `intialize` extract for the client workspace capabilities: ```json "workspace": { "applyEdit":...
I've come to this repo because I've seen a project which refers to it to create a language server. After spending a while digging around, it's not obvious to me...
Reducing the int.MaxValue here to an arbitrary low int value seems to alleviate the suspected memory leak described in https://github.com/OmniSharp/csharp-language-server-protocol/issues/1037 Hoping this PR can serve as the start of a...
Fixes #1078
Hi folks, This is more of a question about documentation than anything else. I am unable to use the `Microsoft.VisualStudio.LanguageServer.Client.ILanguageClient` implementation in my extension as I need to modify the...
Firstly thanks for maintain this repo, it's a godsend when your underlying DLS tools are implemented in .Net! It seems that JetBrains now has limited [support for LSP Servers](https://blog.jetbrains.com/platform/2023/07/lsp-for-plugin-developers/) based...