[vscode]: update extension icon, README and package config#229
Merged
blopker merged 1 commit intoblopker:mainfrom Mar 14, 2026
Merged
[vscode]: update extension icon, README and package config#229blopker merged 1 commit intoblopker:mainfrom
blopker merged 1 commit intoblopker:mainfrom
Conversation
- Add new extension icon (assets/codebook.png) - Update README with improved documentation and formatting - Simplify activationEvents to onStartupFinished - Add keywords to package.json for better discoverability
Owner
|
This is great, thank you! |
Owner
|
I'll need a few days to figure out an easy/automated way to do marketplace releases, but I'll set some time aside for that. |
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.
Hey! I've been using Codebook in VS Code for a while now and it works really well.
That got me thinking about the Marketplace. I'd love to see this published there because I think a lot of developers would find it useful, and right now discoverability is basically zero unless you already know the project exists. This PR is my attempt at helping with that.
Here's what I changed on the VS Code extension side:
Add icon
The Marketplace requires an icon to publish. I added one that fits the extension's style.
Updated README
I rewrote it to be more complete and Marketplace-friendly. It now covers installation, settings, the config file, and a table of supported languages.
Cleaned up package.json
Replaced the long list of
onLanguage:*activation events with just"onStartupFinished". Since the extension uses an LSP that handles language registration on its own, the list was unnecessary and easy to get out of sync. Also addedkeywordsso the extension shows up in search results.Let me know if anything needs adjusting. Happy to make changes!