Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 3.14 KB

vscode-extensions.md

File metadata and controls

53 lines (41 loc) · 3.14 KB

Bookmarks tagged [vscode-extensions]

https://code.visualstudio.com/api/references/extension-guidelines

These guidelines cover the best practices for creating Visual Studio Code extensions.


https://code.visualstudio.com/api/references/extension-manifest

Every Visual Studio Code extension needs a manifest file package.json at the root of the extension directory structure.


https://code.visualstudio.com/api/working-with-extensions/publishing-extension

This topics covers:

  • Using vsce, the CLI tool for managing VS Code extensions
  • Packaging, publishing and unpublishing extensions
  • Registering a publisherId necessary for publishing extensions

[

    Markdown Emoji - Visual Studio Marketplace
](https://marketplace.visualstudio.com/items?itemName=bierner.markdown-emoji)

https://marketplace.visualstudio.com/items?itemName=bierner.markdown-emoji

Extension for Visual Studio Code - Adds :emoji: syntax support to VS Code's built-in markdown preview


https://code.visualstudio.com/api/get-started/your-first-extension

In this topic, we'll teach you the fundamental concepts for building extensions.


https://medium.com/@rmmmsy/your-first-visual-studio-code-extension-ce8e040ba8ca

Step by step explanations how to create a simple extension to save gists. With links to the documentation for doing so.