You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a user with a setup where they would open VSCode in a "workspace mode" and in that workspace, there are several different Bazel projects.
For example:
parent/
parent/bazel-proj1/
parent/bazel-proj2/
when opened in this mode, starpls does not work.
It seems like it failed to detect the Bazel project's root dir, which could be detected by running bazel info workspace inside the same dir as the file being opened.
The text was updated successfully, but these errors were encountered:
Currently have some work in progress for this feature!
But maybe a clarifying question to help me move forward - is it expected that the nested repositories inherit configuration for files like .bazelrc, .bazelversion, etc. from the root workspace, or do the nested repositories have their own sets of those files? I saw that in bazel-contrib/vscode-bazel#383 sometimes that the expected behavior from the end user is that the nested repositories inherit configs from these files, even though I don't think Bazel actually does this by default, so maybe we'd need some custom logic on the LSP side to handle this if it's desired behavior
We have a user with a setup where they would open VSCode in a "workspace mode" and in that workspace, there are several different Bazel projects.
For example:
when opened in this mode,
starpls
does not work.It seems like it failed to detect the Bazel project's root dir, which could be detected by running
bazel info workspace
inside the same dir as the file being opened.The text was updated successfully, but these errors were encountered: