-
Notifications
You must be signed in to change notification settings - Fork 758
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate compatibility with live share #605
Comments
Let's make sure to discuss this before turning on gopls by default (even though I don't think gopls is the only part that doesn't support live share now). |
I just tried it and it looks like all the computation occurs on the server-side (i.e. gopls on the host's machine). |
Should the extension disable itself if it encounters VSLS URIs or should users do that manually? |
Change https://golang.org/cl/269157 mentions this issue: |
As recommended in https://docs.microsoft.com/en-us/visualstudio/liveshare/reference/extensions#visual-studio-code-1 Even when gopls could handle vsls:/, that wouldn't be desirable - the language servers in both host and guest machines would work and produce duplicate results. For #605 Change-Id: I953a81713be5e65a8b8e1597390b50a69ec4eed8 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/269157 Trust: Hyang-Ah Hana Kim <hyangah@gmail.com> Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com> TryBot-Result: kokoro <noreply+kokoro@google.com> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
I confirmed now the extension doesn't complain about gopls's crashes on the live share guest side. I will close this issue for now. As we find individual issues, we will address them in separate issues. Thanks for being patient. The feature is available in v0.19.0. |
Strange - when I tested, it worked. Now I can reproduce this issue again. |
Change https://golang.org/cl/277392 mentions this issue: |
We've received multiple user requests and crash reports related to VS Code Live Share
https://code.visualstudio.com/blogs/2017/11/15/live-share
https://github.com/MicrosoftDocs/live-share
Many tools this extension depend on assumes all files in the repo are
accessible with usual file API, outside VS Code. We are not yet sure
how they would work with Live Share yet.
The text was updated successfully, but these errors were encountered: