go-langserver icon indicating copy to clipboard operation
go-langserver copied to clipboard

Go language server to add Go support to editors and other tools that use the Language Server Protocol (LSP)

Results 60 go-langserver issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....

Hi, I would like to set DocumentFormattingProvider dynamically between my editor and go-language-server without reinitializing. I appreciated if this is possible or how to do that. Thanks, Geonil

enhancement

I am trying to create a web based editor using [Monaco Editor](https://microsoft.github.io/monaco-editor/index.html). I was able to make the go-langserver and monaco-language-client talk to each other but on typing or hitting...

There seems to be some trouble with using this langserver on code in a git submodule. It's working fine when I clone [our fork of Gitea](https://github.com/kitspace/gitea) into a folder. But...

This issue contains a list of Renovate updates and their statuses. ## Open These updates have all been created already. Click a checkbox below to force a retry/rebase of any....

Update `fmt.Errorf` calls to use `%w` instead of `%s`.

Using a proper defined cleanup function like ``` t.Cleanup(func () { // do sth }) ``` is more explicit than just ``` defer func () { // do sth }...

We're recently discovered some odd behavior when viewing results from go-langserver via the Sourcegraph browser extension. When on a GitHub PR file list in which a Go file has been...

In the below case, the definition provider fails for `Println` ``` package main import . "fmt" func main() { Println("hello") } ```

enhancement