python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
VSCode Extension with LSP in C#, how to terminate the LSP dll?
I have a very simple extension that loads a DLL that will contain my LSP project.
namespace SimpleLsp
{
class Program
{
static async Task Main(string[] args)
{
var ...
Paulo Aboim Pinto
Votes: 0
Answers: 0
why does lsp clangd linting throws an error "bits/c++config.h file not found?
lsp linting clangd throws a linting error
when doing an include
e.g
#include <iostream> error bits/c++config.h file not found
I already installed mingw(via choco install) and added it to my pat...
reiend
Votes: 0
Answers: 2
textDocument/hover doesn't work until file is opened in vscode-languageclient/server
I tried to create a language client that communicates with an external language server via web sockets. The communication works well and all LSP functionalities are achieved if all the files are opene...
Adah N
Votes: 0
Answers: 0
vs code language server pipe output of childproces to client
I'm creating my own language-server extension. I've piped the output of a childprocess to the console and the extension outputChannel. The problem is that the console output updates while running the ...
Efratror
Votes: 0
Answers: 0