Creating a VS Code Extension - Crash Course (Developing Visual Studio Code Extensions)

preview_player
Показать описание
A tutorial for creating VSCode (Visual Studio Code) Extensions. In this video, we create a snippets extension and a basic commands extension.

📚 Library(s) needed:

💡 Have a video request?
Suggest it in the Dev Ascend Discord community server or leave it in the comments below!

🕐 Timestamps:
00:00 Creating a "Snippets" Extension
09:01 Creating a "Basic Commands" Extension

#vscode #extension #tutorial
Рекомендации по теме
Комментарии
Автор

This video was unexpectedly informative for a 20 minute tutorial
Well done

prakhargupta
Автор

Wonderful tutorial mate. Just what I was looking for. Thanks a ton.

atharshakeel
Автор

Very helpful. Clear instructions, great pacing. Thanks very much

darraghking
Автор

Following instructions installed clipboardy 3.0.0, which when run result in an error. I had to install the specific version 2.3.0 for the extension to run correctly

OlivierGeorg
Автор

The extension did not work for me it didn't give the code snippet

OmamaAfrozAIB
Автор

The only thing, i felt is that, you missed the main part, "How to share it with the world"

anbuselvanrocky
Автор

Instead of clipboardy.write(....) which was raising an error, I used clipboardy.text = editor.document.getText();

CosminVarlan