Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we write extensions for Visual Studio Code?

Tags:

Can we write extensions for Visual Studio Code?

Atom supports custom packages

Can we build an extension?

like image 535
Ali Avatar asked Apr 29 '15 22:04

Ali


People also ask

How do I add an extension to a Visual Studio Code?

You can browse and install extensions from within VS Code. Bring up the Extensions view by clicking on the Extensions icon in the Activity Bar on the side of VS Code or the View: Extensions command (Ctrl+Shift+X). This will show you a list of the most popular VS Code extensions on the VS Code Marketplace.

What are VS Code extensions written in?

VS Code extensions support two main languages: JavaScript and TypeScript.


2 Answers

As of 18/11/2015 it is indeed possible to create extensions for Visual Studio Code.

There are many extensions already available on the Visual Studio Marketplace

You can read more about it in: Extending Visual Studio Code

like image 181
i3arnon Avatar answered Sep 22 '22 06:09

i3arnon


You could try to create a specific language support by create a new directory under C:\Users\username\AppData\Local\Code\app-0.1.0\resources\app\plugins, the format doesn't seem that difficult to understand.

like image 36
Sargeros Avatar answered Sep 18 '22 06:09

Sargeros