Upstream VSCode companion extension#143
Merged
rockbruno merged 3 commits intospotify:mainfrom Mar 9, 2026
Merged
Conversation
| from lldb_common import load_launch_info, load_bazel_info, run_command | ||
| import os | ||
|
|
||
| launch_info = load_launch_info() |
Contributor
There was a problem hiding this comment.
We can keep everything in TypeScript, which would improve readability and modularity, including the scripts. Is there any specific reason you’re using Python and shell?
Member
Author
There was a problem hiding this comment.
I had a lot of trouble organizing this under typescript. It seemed easier to just use shell since that's what the original Example app was written with
3355f1b to
557e534
Compare
ef619da to
b2235be
Compare
124c20b to
be35d77
Compare
be35d77 to
042641f
Compare
8454f0b to
f768cbd
Compare
f768cbd to
fcf1ab5
Compare
fcf1ab5 to
eef0c0e
Compare
rockbruno
added a commit
to rockbruno/sourcekit-bazel-bsp
that referenced
this pull request
Mar 9, 2026
* Port our VSCode extension to the open-source project * Remove vsix hack * Upstream extension improvements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This ports Spotify's internal extension we have been using as a companion to the BSP into the open source project, replacing the entire Example app infrastructure to instead rely on it. The extension is still missing a couple of important features, but can already handle a wide variety of build, test, and debug actions. All READMEs have been updated accordingly.
Relevant to mention also that the code of the extension is almost entirely vibecoded, so nothing in it should be considered final and we're open for any changes on its structure.