Open bnookala opened 8 years ago
I've been playing with this a bit. Two observations:
.vsix
file is necessary for VS Code?vs-dark
as the UI theme, but that has the result that line numbers are effectively invisible. If you specify vs
, for the light theme, you won't be able to make out text in the search box.@juri Thanks for your observations!
.vsix
file is an artifact of compilation from the vsce
tool, and packages the theme in a portable file that VS Code can open and immediately 'know' what to do with: https://code.visualstudio.com/docs/extensions/install-extension. It's just a convenient distribution method if you don't have an extension in the marketplace
So… since I've been working a lot on VS Code, I figured it wouldn't be too much of a hassle to convert your theme to work with it! As far as installation and distribution goes, I packaged the
0.1.0
version using the VS Code publishing tool as a preliminary means of installation. The instructions are inindex.html
, but it's as simple as dragging the downloaded package onto the editor.As far as marketplace distribution goes (so users can install it through the VS Code itself), I didn't feel too comfortable doing that, but here are the instructions on how to have it appear in the marketplace.
Thanks! Bhargav