Visual Studio Code Plugins (Format / Spell Check)

nVentimiglia picture nVentimiglia · May 13, 2015 · Viewed 10.1k times · Source

Using the new Visual Studio Code editor vs 1. This is not the full Visual Studio IDE but their atom.io based code editor. I would like to install plugins specifically for spell check and formatting my code. How can I do this?

I've followed instructions here: Is there a command for formatting HTML in the Atom editor? but realized that I do not have a install plugin command.

Answer

Joshua Shearer picture Joshua Shearer · Jan 9, 2016

It's been a few months since the question was asked (and answered), but thankfully, things have changed!

VSCode now support extensions!

Here's a relevant excerpt from the above blog post:

Extension Marketplace/Gallery

To complement the extensibility mechanism, we have also launched an in product gallery and web based extension marketplace. These allow you to discover and install extensions. To open this up in VSCode, simply hit F1 and select Extensions: Install Extensions.

Alternatively, you can browse the Extension Marketplace at https://marketplace.visualstudio.com/#VSCode.

VSCode Screenshot

I gave the marketplace a quick search and easily found multiple extensions for spelling and source formatting, but I'll forego making any specific recommendations since everyone's requirements are different.

For anyone looking to write their own extensions for VSCode, take a look at the documentation for extending VSCode, as it has a lot of the information you'd need to start writing your own extensions.

Lastly, thanks to Daniel for his comment. It helped me find the information I needed, but to save future visitors some time, I thought it was worth sharing my findings.