Visual Studio Code Plugins (Formatting / Spelling)

Using the new Visual Studio Code vs 1 code editor. This is not a complete Visual Studio IDE, nor is the atom.io-based code editor. I would like to install plugins specifically for spelling and formatting my code. How can i do this?

Ive followed these instructions: Is there a command to format html in the Atom.io editor? but realized that I do not have the installation plugin command.

+7
atom-editor visual-studio-code
source share
2 answers

Several months have passed since the question was asked (and answered), but, fortunately, everything has changed!

VSCode now supports extensions!

Here is the relevant excerpt from the above blog post:

Marketplace Extension / Gallery

In addition to the extensibility mechanism, we also launched in the product gallery and on the extension website. They allow you to discover and install extensions. To open it in VSCode, just press F1 and select Extensions: Install Extensions .

Alternatively, you can view Marketplace extensions at https://marketplace.visualstudio.com/#VSCode .

VSCode Screenshot

I gave the market a quick search and easily found several extensions for spelling and formatting the source code, but I will refuse any specific recommendations, since all the requirements are different.

For those who want to write their own extensions for VSCode, check out the documentation for the VSCode extension , as it has a lot of information needed to start writing its own extensions.

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

+10
source share

In the VSCode editor, plugin support is not currently supported. The development team was unhappy with the plugin's API, so they disabled them until further work was done on this.

For more information see this entry: fooobar.com/questions/825866 / ...

+7
source share

All Articles