An Phung
An Phung
Here is my go config ```json "go.docsTool": "gogetdoc", "go.languageServerExperimentalFeatures": { "autoComplete": true, }, "go.languageServerFlags": [ "-diagnostics", ], "go.useLanguageServer": true, ``` go-langserver output: ``` langserver-go: reading on stdin, writing on stdout...
It was running slow without it. tried to add it to see if there is some info, but no info.
Thanks for checking :)
Here we go. ```json "go.languageServerExperimentalFeatures": { // "autoComplete": true, }, "go.languageServerFlags": [ "-pprof", "localhost:6060", ], "go.useLanguageServer": true, ``` 1. Click on a symbol in vscode 2. Immediately go to terminal...
Ah, it's like this, try to jump to Definition of: 1. `definitionGodef` https://github.com/sourcegraph/go-langserver/blob/master/langserver/definition.go#L25 and 2. `Location` https://github.com/sourcegraph/go-langserver/blob/master/langserver/definition.go#L29 `Location` got jumped into immediately, `definitionGodef` has a little delay. Maybe it's because...